UTF* Chinese printing
I was trying to print out UTF8 chinese characters in my console,
after setting up character encodings and everything(I think)
I managed to do that but for some reason, some of the characters can't be shown (display ? instead),here is the code:
PrintStream out = new PrintStream(System.out, true, "UTF-8");
String str = "一二三四五十";
out.print(str);
console displays: 一二三四五�?
apparently the character "十?cannot be printed correctly, anyone has a clue?
thanks

