Skip to content
Dan Gorman edited this page Nov 29, 2018 · 4 revisions

The CHAR Function

Function Group: Text

CHAR can be used with an argument of a Unicode table reference to generate a character.

Syntax

CHAR(arg1)

  • arg1 is an argument of a Unicode table reference (decimal only)

Uses

Can be used to generate any code by Unicode table reference.

Examples

CHAR(123) => {

CHAR(52) => 4

CHAR(100) => d

Notes

Almost the opposite of CODE, which takes an argument of a string and returns a numerical Unicode value.

Clone this wiki locally