java how to write 0x13 unicode character?
how 开发者_运维知识库to print 0x13 Unicode character in java ???
Use a Unicode escape:
System.out.print("\u0013");
Remember that Unicode escapes are replaced by the compiler by the corresponding Unicode character which can introduce compiler errors.
精彩评论