I'm new to using unicode and I'm currently having trouble in displaying some Chinese text that I received from this translator: http://www.chinese-tools.com/tools/converter-unicode.html
I have successfully utilized unicode in examples when text was only a number like in this case: \u0050 However, the text I'm displaying is more complicated and looks like this: 中国的
; when I place "\u" before it I receive a compile-time error that states "Invalid Unicode".
The full line is:
System.out.println("\u中国的");