description |
---|
Converts a Unicode code point into the character that matches the input Unicode character. If an invalid code point is specified, an empty string is returned. |
- integer_expression: Unicode code point to convert to character.
Examples
{% code title="CHR example" %}
SELECT CHR(72)
-- H
{% endcode %}
{% code title="CHR example" %}
SELECT CHR(33)
-- None
{% endcode %}