@UNICODEX[string] : Returns the space separated list of the Unicode hexadecimal values of the characters in string. You can use the Escape character before a special character (i.e., a quote or greater than (>) sign) in string.
@UNICODEX supports UTF-16 surrogate code pairs.
See also: @ASCIIX.
Examples:
function |
value |
%@unicode[a] |
0x61 |
%@unicode[A] |
0x41 |
%@unicode[^`] |
0x60 |
%@unicode[abc] |
0x61 0x62 0x63 |