예제 #1
0
 /**
  * Returns a character by its code point specified as a hexadecimal string.
  *
  * For instance, "0041" or "41" would return "A".
  *
  * @param  string $code The Unicode code point. This can be a string with up to four hexadecimal digits.
  *
  * @return CUStringObject The Unicode character with the code point specified.
  */
 public static function fromCharCodeHex($code)
 {
     return CUString::fromCharCodeHex($code);
 }