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:02]
# 1
And how is this related to Swing?
kirillga at 2007-7-12 8:39:15 > top of Java-index,Desktop,Core GUI APIs...
# 2
Well the rest of the application is Swing.I couldn't find a "general Java programming" forum, so I figured such a simple question could be answered by Swing experts.Do you have a suggestion for a more appropriate forum?Matthew
CathInfoa at 2007-7-12 8:39:15 > top of Java-index,Desktop,Core GUI APIs...
# 3
The "Java programming" will be a good place http://forum.java.sun.com/forum.jspa?forumID=31
kirillga at 2007-7-12 8:39:15 > top of Java-index,Desktop,Core GUI APIs...
# 4
String em = String.valueOf((char)77);
JayDSa at 2007-7-12 8:39:15 > top of Java-index,Desktop,Core GUI APIs...