In JavaScript, how to get a string representation of an ASCII value, e.g. how to turn 65 into A?
65
A
A reference for those of us that don't like w3schools ;)
Usage:
var myAString = String.fromCharCode(65)