' to its ascii in jquery code example
Example 1: js convert order to char
String.fromCharCode(65,66,67); // returns 'ABC'
Example 2: javascript string to ascii array
String.fromCharCode('a');
String.fromCharCode(65,66,67); // returns 'ABC'
String.fromCharCode('a');