javascript string to ascii array

JavaScript
String.fromCharCode(65,66,67); // returns 'ABC'
String.fromCharCode('a');
Source

Also in JavaScript: