get th eint from char js code example
Example 1: character to ascii in js
'a'.charCodeAt(0)//returns 97, where '0' is the index of the string 'a'
Example 2: js convert order to char
String.fromCharCode(65,66,67); // returns 'ABC'
'a'.charCodeAt(0)//returns 97, where '0' is the index of the string 'a'
String.fromCharCode(65,66,67); // returns 'ABC'