Answers for "how to convert ascii code to sting in js"

6

javascript convert between string and ascii

let ascii = 'a'.charCodeAt(0); // 97
let char = String.fromCharCode(ascii); // 'a'
Posted by: Guest on May-27-2020
0

turn ascii into text javascriot

const character = String.fromCharCode(67);

console.log(character); // "C"
Posted by: Guest on September-01-2020

Code answers related to "how to convert ascii code to sting in js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language