[Edit]
+
0
-
0
JavaScript - convert char code to character
1 2 3 4 5 6 7 8 9 10const code = 65; const char = String.fromCharCode(code); console.log(char); // A // See also: // // 1. https://dirask.com/snippets/JavaScript-convert-character-to-char-code-DnvBvD
Reset