> For the complete documentation index, see [llms.txt](https://docs.onum.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.onum.com/pipelines/actions/transformation/field-transformation/field-transformation-operations/utils/from-ebcdic-037.md).

# From EBCDIC 037

## Description

This operation converts an input string representing bytes encoded in EBCDIC 037 to a string in the selected output format.

***

## Data types

These are the input/output expected data types for this operation:

### Input data

`String` - A string representing bytes encoded in EBCDIC 037.

### Output data

`String` - The converted string in the selected output format.

***

## Parameters

These are the parameters you need to configure to use this operation (mandatory parameters are marked with a <mark style="color:red;">**\***</mark>):

<details>

<summary>Output Format<mark style="color:red;"><strong>*</strong></mark></summary>

The desired output format. Options include:

* **ASCII / UTF-8**
* **ISO-8859-1 (Latin-1)**
* **ISO-8859-15 (Latin-15)**
* **Unicode UTF-16**
* **Unicode UTF-32**
* **Hexadecimal**
* **Binary**&#x20;

</details>

***

## Example

Suppose you want to **convert** a series of strings encoded in **EBCDIC 037** to ASCII format:

1. In your Pipeline, open the required [Action](/pipelines/actions.md) configuration and select the input **Field**.
2. In the **Operation** field, choose **From EBCDIC 037**.
3. Set **Output** **Format** to `ASCII / UTF-8`.
4. Give your **Output field** a name and click **Save**. The values in your input field will be converted. For example:

```
Input data - "414243c"

Output Format - ASCII / UTF-8

Output data - "ABC"
```

{% hint style="info" %}
You can try out operations with specific values using the **Input** field above the operation. You can enter the value in the example above and check the result in the **Output** field.
{% endhint %}
