convert from char to ascii js code example
Example 1: character to ascii javascript
"ABC".charCodeAt(0) // returns 65
Example 2: js number to ascii
String.fromCharCode(97); // --> 'a'
"ABC".charCodeAt(0) // returns 65
String.fromCharCode(97); // --> 'a'