String.fromCodePoint()
Создаёт строку из кодовых точек Unicode.
Сигнатура
String.fromCodePoint(num1, num2, ...)Статический метод. В отличие от fromCharCode, корректно работает с символами вне BMP (эмодзи).
String.fromCodePoint(128512) // '😀'
String.fromCodePoint(65, 66) // 'AB'
String.fromCodePoint(1103) // 'я'