char
Returns a string that contains the Unicode character of the number supplied as argument. For example, char(10) returns a Line Feed. To find out the numeric code of a specific Unicode character, use the code function.
Signature
char(number:number) -> string |
Parameters
Name | Type | Description |
---|---|---|
number | number | The numeric code of the character. This code is equivalent to the decimal code used to represent a Unicode character in HTML (for example, 8734 represents the infinity symbol). |
Examples
The following execution step returns the infinity symbol: