[Edit]
+
0
-
0

JavaScript - convert char code to character

1 2 3 4 5 6 7 8 9 10 11 12 13 14
const toCharSymbol = (code) => { return String.fromCharCode(code); }; // Usage example: console.log(toCharSymbol(65)); // A // See also: // // 1. https://dirask.com/snippets/JavaScript-convert-character-to-char-code-Dd5mKp
Reset