UNICODE(text)
=UNICODE("A")
The function can be used to return the Unicode number that a character represents. For example, if you use the function above, it will return the Unicode number for the uppercase "A", which is 65.
=UNICODE("&")
The function can also be used to return the Unicode number that a special character represents. For example, if you use the function above, it will return the Unicode number for the ampersand character, which is 38.
=UNICODE(" ")
The function can also be used to return the Unicode number that a space character represents. For example, if you use the function above, it will return the Unicode number for a single space inside quotation marks, which is 32.
=UNICODE("1")
The function can also be used to return the Unicode number that a number character represents. For example, if you use the function above, it will return the Unicode number for the number 1, which is 49.
The UNICODE function is used to obtain the Unicode code point for a given text argument. It requires one text argument and provides the corresponding Unicode code point.