/** * Returns a character by its code point specified as an integer. * * @param int $code The Unicode code point. * * @return CUStringObject The Unicode character with the code point specified. */ public static function fromCharCode($code) { return CUString::fromCharCode($code); }