how do create a java string for chinese characters?
807603Dec 20 2007 — edited Dec 21 2007hi,
漢 ---> in html it represents the chinese character 漢 (and it shows up in the browser correctly).
now i have a java screensaver that scrolls texts across the screen. i tried the following but it didn't work:
String chineseStr = "\\u28450"; // doesn't show the chinese char (converted it to hex but still it didn't work).
so, how do i represent 漢 as a java String object (code example please). do i need a special flag for javac?
please help,
thanks