UNICODE_CHAR
and UNICODE_VAL
Adriano dos Santos Fernandes
UNICODE_CHAR
Returns the Unicode character with the specified code point.
UNICODE_CHAR( <number> )
Note
|
The argument to UNICODE_CHAR must be a valid Unicode code point and not in the range of high/low surrogates (0xD800 to 0xDFFF), otherwise it throws an error. |
select unicode_char(x) from y;
UNICODE_VAL
Returns the Unicode code point of the first character of the specified string, or zero if the string is empty.
UNICODE_VAL( <string> )
select unicode_val(x) from y;