Version: v0.7.1 - Beta.  We welcome contributors & feedback.

String.charFromCode

String.charFromCode($code) -> string

Description

Returns a single character for the given Unicode character code.

This is the opposite of String.getCharCode.

String.charFromCode(84)    //= 'T'
String.charFromCode(104)   //= 'h'
String.charFromCode(33333) //= '舵'

See Also