Hello all,
This may be a silly question but... Say I have a String
like 4e59
which represents a special unicode character. How can I add the \u
to the beginning of that character so that it displays correctly? I've tried the simplest solution of:
String str = "4e59";
System.out.println("\\u"+str);
And several other variants, what am I missing?