Unicode characters usage in Standalone Java application
Sham Jowsaki
Ranch Hand
Joined: May 22, 2001
Posts: 146
posted
0
Hi all, How to display the UNICODE characters (languages) in standalone JAVA application. I'm able to use unicode characters calling the JAVA application through IE browser. Please guide me how to solve this problem. Cheers Jowsaki
Colin Kenworthy
Ranch Hand
Joined: Aug 06, 2001
Posts: 88
posted
0
You can code unicode chars one at a time with the \u0000 notation. Or you can include them in Strings. e.g. char x = '\u0055'; String s = "Unicode \u0055"; Codes are listed at www.unicode.org