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\'
Remember that char is an integral type, and thus can be given an integer value, as well as a char constant.
char
char c = 0x2202;//aka 8706 in decimal. \u codepoints are in hex. String s = String.valueOf(c);