превратить ASCII в текст Javascriot

const character = String.fromCharCode(67);

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