Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

string.fromcharcode

const unicodeA = 97; // https://en.wikipedia.org/wiki/List_of_Unicode_characters
console.log(String.fromCharCode(unicodeA)); // logs the letter 'a' out
 
PREVIOUS NEXT
Tagged:
ADD COMMENT
Topic
Name
8+7 =