Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
import java.io.PrintStream;
import java.io.UnsupportedEncodingException;
public class TestClass {
public static void main(String [] args) throws UnsupportedEncodingException {
String chineseString = "\u4e00\u4e01\u4e02\u4e03\u4304";
PrintStream ps = new PrintStream(System.out, true, "UTF-8");
ps.println(chineseString);
}
}
一丁丂七䌄
一丁丂七
Which version of OS are you using, key78?
In Eclipse editor, once I specify the console's encoding to UTF-8, I get this...
Code:一丁丂七