|
Sep
05
|
By casting the integer ASCII value to a char.
int asciiValue = 65; char ch = (char) asciiValue;
One Ping to “How do I convert an ASCII value to a character?”
One Response to “How do I convert an ASCII value to a character?”
-
kirubakaran Says:
November 2nd, 2011 at 1:04 amits use full for me and its working fine.



May 5th, 2009 at 2:01 am
[...] If you have a hex value as a string and you need the ASCII character that corresponds to that value then you need to parse your string to get its value. Once you have its value it is a simple cast to convert it to an ASCII character [...]