I want to display a Unicode character in Java. If I do this, it works just fine:
String symbol = \"\\u2202\";
symbol is equal to \"∂\". That\'
This one worked fine for me.
String cc2 = "2202"; String text2 = String.valueOf(Character.toChars(Integer.parseInt(cc2, 16)));
Now text2 will have ∂.