fromcharcode code example
Example 1: fromcharcode in javascript
// String.fromCharCode() converts an ascii value to its character equivalent
// Decimal to Text
String.fromCharCode(97) // "a"
// Hex to Text
String.fromCharCode(0x21) // "!"
// Binary to Text
String.fromCharCode(0b01001010) // "J"
Example 2: js convert order to char
String.fromCharCode(65,66,67); // returns 'ABC'