converti javascript entre la chaîne et l'ASCII

let ascii = 'a'.charCodeAt(0); // 97
let char = String.fromCharCode(ascii); // 'a'
Mattalui