we can convert character to an integer equivalent to the ASCII value of the same but can we do the reverse thing ie convert a given ASCII value to its character equivalent?
To convert to/from:
int i = 65; char c = (char)i; char c = 'A'; int i = (int)c;