UNICODE


Returns the unicode number associated with a character

Syntax:

UNICODE(value)


UNICODE checks value returning the unicode number associated with value.


Example:

If A1 contains A:

UNICODE(A1)

returns 65



A

B

1
A
65

Application:

Scenario: You have a list of special characters or symbols that you need to identify and classify. For example, you might be an analyst working with data from different languages or sources, and you need to understand the underlying character codes to ensure consistent data processing and display.


Goal: Use the UNICODE function to get the numerical code for each character in your list. This is useful for troubleshooting display issues, creating custom sorting rules, or simply documenting the characters you are working with.


Table:

Character

A
1
2
©
3
ñ
4
😎
5

The Formula:

In this example, the UNICODE function will be used in column C to find the Unicode value of the character in column A.

  1. For the Euro Symbol (€):
    • In cell C1, you would enter the formula: UNICODE(A1)
    • The result in cell C1 will be 8364. This is the official Unicode value for the Euro sign.
  2. For the Copyright Symbol (©):
    • In cell C2, you would enter the formula: UNICODE(A2)
    • The result in cell C2 will be 169.
  3. For the "n" with a tilde (ñ):
    • In cell C3, you would enter the formula: UNICODE(A3)
    • The result in cell C3 will be 241.
  4. For the Smiling Face with Sunglasses Emoji (😎):
    • In cell C4, you would enter the formula: UNICODE(A4)
    • The result in cell C4 will be 128526.
  5. For the Black Star (★):
    • In cell C5, you would enter the formula: UNICODE(A5)
    • The result in cell C5 will be 9733.


Final Table:

After applying the formulas, your table would look like this:

Character

Function

Unicode Value

A
B
C
1
UNICODE(A1)
8364
2
©
UNICODE(A2)
169
3
ñ
UNICODE(A3)
241
4
😎
UNICODE(A4)
55357
5
UNICODE(A5)
9733


This page is protected by Google reCAPTCHA. Privacy - Terms.
 
Built using Zapof