Chr
This Flow Script tutorial explains how to use the CHR function with syntax and examples.
Description
The Chr function returns the given Unicode character code as a string.
Syntax
The syntax for the Chr function is:
Chr(code)
Parameters
code - the Unicode character which is to be returned as a string.
Returns
The Chr function returns a string.
Example
Let's look at some Chr function examples and explore how to use the Chr function.
Chr(9)
Result: <the TAB character>
Chr(35)
Result: #
Chr (64)
Result: @
Last updated
Was this helpful?