Convierte ASCII en texto Javasciot

const character = String.fromCharCode(67);

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