Contact: aviboots(AT)netvision.net.il
40,762 questions
53,137 answers
573 users
let n = 97; const ch = String.fromCharCode(n); console.log(ch); /* run: "a" */
console.log(String.fromCharCode(97,98, 99)); /* run: "abc" */