js get ascii value of char code example
Example 1: character to ascii javascript
"ABC".charCodeAt(0) // returns 65
Example 2: character to ascii javascript
String.fromCharCode(65,66,67); // returns 'ABC'
Example 3: look up asciii value javascript
var charCode = "a".charCodeAt(0);
console.log(charCode);