CHAR Function: Difference between revisions

From Planfix
Jump to: navigation, search
(Created page with "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:''...")
 
No edit summary
 
(One intermediate revision by one other user not shown)
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.


Line 9: Line 16:


''Examples:''
''Examples:''


CHAR(10) results: line break character
CHAR(10) results: line break character

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