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
 
Line 9: Line 9:


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


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

Latest revision as of 20:38, 8 December 2019

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