Convert a Number to a Character
Convert a number into its corresponding character ASCII value.
Overview
This operation converts a numeric value into its corresponding character based on the ASCII table. ASCII is a standard encoding scheme where numbers represent specific characters, such as letters, digits, and symbols.
Syntax
the number is {value}
convert the number to a character
Data
The table below lists the names of the data elements in this operation and indicates which can be renamed in the syntax.
Data Name | Can Be Renamed |
---|---|
the number | No |
Parameters
Parameters are placeholders for data. Refer to the table below for details on each parameter in this operation. In the syntax, replace parameters with your own values.
Parameter | Description | Examples | Required |
---|---|---|---|
value | The numeric value to convert. | 97 | Yes |
Examples
the number is 97
convert the number to a character
a
Updated 30 days ago