CHR
Returns the single character string corresponding to the given Unicode code point.
Syntax
Arguments
N
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 | ! |
Transformation job example
SQL
Query result
chr_example1 | chr_example2 | chr_example3 |
---|---|---|
A | Z | 0 |
Last updated