CHAR

Converts a number into a character specified by the current Unicode table.

Sample Usage

CHAR(65)
CHAR(C5)

Syntax

CHAR(value)

  • value - The number of the character to look up from the current Unicode table. The number must be in a decimal format (base 10). 

 

Examples

CHAR(65) returns 'A' - the character represented by 65 in the current Unicode table. 
CHAR(C5) returns the character represented by C5 in the current Unicode table. 

Notes

  • The current Unicode table can be found online at the unicode website.
  • Not all Unicode characters will display properly on all computers and devices. Special fonts or languages may have to be installed or enabled on your computer.