Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
String original = "String containning special chars \u202C \n \u202C \u202C \u202C"; String escaped = original.replace("\u202C", "\\u202C"); System.out.println(escaped);