CHAR Function: Difference between revisions

From Planfix
Jump to: navigation, search
No edit summary
No edit summary
 
Line 1: Line 1:
{{#seo:
|title=CHAR Function
|titlemode=append
|keywords=planfix, Function, CHAR
|description=CHAR Function
}}
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.
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.



Latest revision as of 07:25, 10 May 2024

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