CHAR
Description
Returns the character corresponding to the specified ASCII code.
Syntax
CHAR(int) -> String
Parameters
| Parameter | Data Type | Required | Description |
|---|---|---|---|
| int | Integer | Yes | An integer value representing a valid ASCII character code. |
Examples
CHAR(65)
-- Returns "A".CHAR(189)
-- Returns "½".