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\'
String st="2202"; int cp=Integer.parseInt(st,16);// it convert st into hex number. char c[]=Character.toChars(cp); System.out.println(c);// its display the character corresponding to '\u2202'.