Unicode String
Hello JAVAers
I want store, read, and display an input string, the characters in this string is not an English Characters, it is Arabic Character...
Current State
-
String englishString = "ABCD";
String arabicString = "أبتثج";
// if the arabic characters did not appear, OK, it is only some sort of arabic
// characters to make a String
System.out.println(englishString);
System.out.println(arabicString);
ProgramOutput
--
ABCD
?
Comment
-
English characters appears normaly,
Arabic characters appears as ?
TOOLS
-
NetBeans IDE 5.0;
jdk1.5.0_08
Question
-
How can i make the arabic Characters appears normaly, or any other unicode characters?

