CODE
returns the numeric Unicode map value of the first character in the argument.
Function category: Text​
CODE(arg1)
Arguments | Description |
| A string. |
If we wanted to find the numerical unicode value of a given string, use the following function.
# Find numerical unicode value of a stringCODE("d")​# Returns 100
Almost the opposite of CHAR, which takes an argument of a numerical Unicode value and returns a string.