CHR
Returns the single character string corresponding to the given Unicode code point.
Syntax
CHR(N)
Arguments
N
Type: bigint
An integer representing a Unicode code point value.
Returns
Type: string
The Unicode code point N as a single character string.
Examples
| N | Output |
|---|---|
| 65 | A |
| 90 | Z |
| 48 | 0 |
| 57 | 9 |
| 32 | ''
|
| 97 | a |
| 122 | z |
| 33 | ! |