ascii code of a char in js code example
Example 1: javascript convert between string and ascii
let ascii = 'a'.charCodeAt(0); // 97
let char = String.fromCharCode(ascii); // 'a'
Example 2: look up asciii value javascript
var charCode = "a".charCodeAt(0);
console.log(charCode);