UNICODE_VAL()
Unicode code point from string
INTEGER
UNICODE_VAL (ch)
Parameter | Description |
---|---|
ch |
A string of the |
Returns the Unicode code point (range 0…0x10FFFF) of the character passed in.
-
If the argument is a string with more than one character, the Unicode code point of the first character is returned.
-
If the argument is an empty string, 0 is returned.
-
If the argument is
NULL
,NULL
is returned.