# my (mask hexadecimal to ASCII) processing code

The my processing code converts all
ASCII hexadecimal characters in a given value to their corresponding
ASCII equivalent. The characters are converted two at a time to 1-digit
ASCII characters. The mx code is the inverse of
the my code.

| System Processors | Select, Update, List |
| --- | --- |
| Code Type | Attribute Defining |
| Dictionary Attributes | Input Conversion, Output Conversion, Correlative |

## Syntax

```
my
```

## Example(s)

| Data | Conversion | Sample Output |
| --- | --- | --- |
| 313233 | my | 123 |
| 616263 | my | abc |
| 6120646F67 | my | a dog |

## See also

- [iconv() function](https://d3codex.com/pickbasic-flashbasic/iconv-function/)
- [mx (mask ASCII to hexadecimal) processing code](https://d3codex.com/processingcodes/mx-mask-ascii-to-hexadecimal-processing-code/)
- [output-conversion](https://d3codex.com/attributedefiningitem/output-conversion/)
- [Processing codes overview](https://d3codex.com/processingcodes/processing-codes-overview/)
- [Processing codes](https://d3codex.com/processingcodes/processing-codes/)

---
Source: https://d3codex.com/processingcodes/my-mask-hexadecimal-to-ascii-processing-code/ - part of the D3Codex reference.
