fromCodePoint < String < JavaScript
The String fromCodePoint() static method returns a string created from the specified sequence of code points.
const alphabets = String.fromCodePoint(65, 66, 67);
console.log(alphabets);
// ABC
console.log(String.fromCodePoint(9731, 9733, 9842, 0x2f804));
// "☃★♲你"