Returns a string created from the given sequence of UTF-16 code units.
fromCharCode(...codes)
codes variadic
A sequence of numbers that are UTF-16 code units.
A string.
String.fromCharCode(65, 66, 67)
"ABC"