CHAR Function

From Planfix
Revision as of 20:38, 8 December 2019 by SliZzzZ (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

The CHAR function returns a string containing the character with the given code. As an argument, it takes the numeric value of the desired character in UTF-16.


Format:

CHAR(number)

 

Examples:

CHAR(10) results: line break character

CHAR(63) results: A

CHAR(128512) results: 😀


Go To