# Convert a Character to a Number

## Overview

This operation allows you to convert a single character into its corresponding numeric value 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 character is "{input}"
convert the character to a number
```

## 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 character | 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                                | Example | Required |
| --------- | ------------------------------------------ | ------- | -------- |
| `input`   | A single character to convert to a number. | A       | Yes      |

## Examples

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

```
the character is "A"
convert the character to a number
```

{% endtab %}

{% tab title="Results" %}

```
65
```

{% endtab %}
{% endtabs %}
