|
IntlChar::charFromNameFind Unicode character by name and return its code point value Description
public static intnull IntlChar::charFromName(string
$name , int $type = IntlChar::UNICODE_CHAR_NAME)Finds a Unicode character by its name and returns its code point value.
The name is matched exactly and completely. If the name does not correspond to a code point, A Unicode 1.0 name is matched only if it differs from the modern name. Unicode names are all uppercase. Extended names are lowercase followed by an uppercase hexadecimal number, and within angle brackets. Parameters
Return Values
The Unicode value of the code point with the given name (as an int), or ExamplesExample #1 Testing different code points
The above example will output: int(65) int(9731) int(9843) NULL See Also
|