I want to create a string that will contain unicode code, but won’t convert it on use.
String s = new String("\u010C");
System.out.println(s);
I want this to be output:
\u010C
instead of this:
Č
I want string to actually contain that set of six characters.
If you want the output to be
You need to escape your backslash: