开发者

java how to write 0x13 unicode character?

开发者 https://www.devze.com 2022-12-10 20:05 出处:网络
how 开发者_运维知识库to print 0x13 Unicode character in java ???Use a Unicode escape: System.out.print(\"\\u0013\");

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.

0

精彩评论

暂无评论...
验证码 换一张
取 消