Would some one show me how to print out the whole Chinese dictionary with output { unicode, Chinese character) in Java ?
String index = String.valueOf(i) ;
String chineseChar = "\\" + "u4e0" + index ;
System.out.println (index + " => " + chineseChar );
Last statement printed out 0 => \u4e00 The problem was the right hand side should have been a chinese character "One".
What is exactly the range of Chinese encoding in unicode ?