CHAR

Description

Returns the character corresponding to the specified ASCII code.

Syntax

CHAR(int) -> String

Parameters

ParameterData TypeRequiredDescription
intIntegerYesAn integer value representing a valid ASCII character code.

Examples

CHAR(65)
-- Returns "A".
CHAR(189)
-- Returns "½".