String.fromCharCode

Returns a string created from the given sequence of UTF-16 code units.

Syntax

fromCharCode(...codes)

Parameters

Return value

A string.

Examples

String.fromCharCode(65, 66, 67)
"ABC"

See also