Hello everyone,
Im trying to write Punjabi (Gurmukhi) by Unicode. I have the Unicode code point of all character and Code Block is Gurmukhi.
System.out.prinln("\u0A73")
u0A73 = GURMUKHI URA = ੳ
but its showing "?".
then i tried with PrintStream
String unicodeMessage = "\u0A73";
try {
PrintStream output = new PrintStream(System.out, true, "UTF-8");
output.print(unicodeMessage);
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
}
now its showing "ੳ".
Tried with UTF-16 and UTF-32 too.
so, i decided to post here for help. can anyone help me to sort out this problem ?
Thanks in advance.