Unicode Function
Purpose Return value Syntax =UNICODE(text) text - Unicode character to convert to number. Using the UNICODE function The Excel UNICODE function returns a number (code point) corresponding to a Unicode character given as text. The result is a number in decimal notation. For example, the Euro symbol (€) is code point 8364 in decimal notation, so UNICODE returns 8364: =UNICODE("€") // returns 8364 To get the hexadecimal value, which is usually how unicode code points are expressed, you can use the DEC2HEX function like this:...