Transformez ASCII en texte javascriot

const character = String.fromCharCode(67);

console.log(character); // "C"
Concerned Cobra