Syntax
| Parameter | Description |
|---|---|
| number | Parameter of the UNICHAR function. |
Examples
Euro sign
=UNICHAR(8364)
Checkmark symbol
=IF(A1="Done", UNICHAR(10003), "")
Degree symbol
=A1 & UNICHAR(176) & "C"
Common Errors
Occurs when the code point is invalid (0, negative, or above 1114111) or corresponds to a non-character code point.
Some implementations return #N/A for surrogate code points (55296-57343) which are not valid standalone characters.
Tips
8364=€, 163=£, 165=¥, 176=°, 10003=✓, 10007=✗, 9733=★, 9829=♥. Look up code points at unicode-table.com.
CHAR only handles codes 1-255 (extended ASCII). UNICHAR handles the full Unicode range up to 1,114,111. Use UNICHAR for any non-ASCII symbol.
UNICODE("€") returns 8364. Use this pair to analyze and generate characters programmatically.
Try UNICHAR in Viztab
Import your data and use UNICHAR with 370+ other formulas. No signup required.
Open Viztab