Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

how to print 0x13 Unicode character in java ???

share|improve this question
3  
@g.revolution - it might be a worthwhile thing to take some time to review your old questions and accept some answers, where appropriate. – Software Monkey Nov 10 '09 at 19:48

1 Answer

up vote 5 down vote accepted

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.

share|improve this answer
1  
Though \r is not 0x13 but 0x0d. – laalto Nov 10 '09 at 11:36
Argh, sorry. Ok, that simplifies the answer a bit :-) – Јοеу Nov 10 '09 at 11:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.