Hi , how to print 0x13 Unicode character in java ???
+4
A:
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.
Joey
2009-11-10 11:31:32
Though `\r` is not 0x13 but 0x0d.
laalto
2009-11-10 11:36:57
Argh, sorry. Ok, that simplifies the answer a bit :-)
Joey
2009-11-10 11:46:27