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\'
char c=(char)0x2202; String s=""+c;