Contact: aviboots(AT)netvision.net.il
39,914 questions
51,847 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" */