How to convert 77 to 'M'? (Decimal to Ascii)

I don't want to change 77 to '77', but rather I want to change 77 to 'M'Can I useString mychar = Integer.toString(77);or would that just give me '77'?Thanks,Matthew
[213 byte] By [CathInfoa] at [2007-11-27 3:36:37]
# 1
Assign it to a char.
prometheuzza at 2007-7-12 8:39:52 > top of Java-index,Java Essentials,Java Programming...
# 2
String em = String.valueOf((char)77);
JayDSa at 2007-7-12 8:39:52 > top of Java-index,Java Essentials,Java Programming...