Contact: aviboots(AT)netvision.net.il
41,605 questions
54,259 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" */