TRUECALC
Functions

UNICODE

Unicode code point of first character

Try it

When to use it

When should I use UNICODE instead of CODE?

Use UNICODE when you need the full Unicode code point of the first character, including characters outside the basic ASCII range such as accented letters, CJK characters, or emoji.

Used in

operations

Syntax

UNICODE(text)

Examples

=UNICODE("Alphabet") // => 65
=UNICODE(123) // => 49
=UNICODE("😀😀😄") // => 128512

On this page