# Convert a Number to a Character

## Overview

This operation converts a numeric value into its corresponding character based on the [ASCII table](https://www.asciitable.com/). 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

{% tabs %}
{% tab title="Automation" %}

```
the number is 97
convert the number to a character
```

{% endtab %}

{% tab title="Results" %}

```
a
```

{% endtab %}
{% endtabs %}
