In JavaScript, how to get a string representation of an ASCII value, e.g. how to turn 65 into A?
65
A
The method you're looking for is String.fromCharCode (http://www.w3schools.com/jsref/jsref_fromCharCode.asp).