Depuis Charcode en 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"
DenverCoder1