1.Description
Each character of a text is converted into its ASCII code in the hexadecimal format.
Important
Only a single-digit hexadecimal value is created for characters whose hexadecimal ASCII code is less than or equal to '0F'!
Note
The hexadecimal values for all printable characters are in the range above '0F'.
2.Inputs
| No. | Name | Initialisation | Description |
|---|---|---|---|
| 1 | E1 Text | "" | Text (Text) |
3.Outputs
| No. | Name | Initialisation | SBC | Description |
|---|---|---|---|---|
| 1 | A1 Hex | "" | s | Concatenated ASCII codes in hexadecimal format (text) |
s = send, sbc = send by change
4.Value table as an example
| Input 1 | ASCII codes, comma separated | Output 1 |
|---|---|---|
| abcde | 97,98,99,100,101 | 6162636465 |
| This is an example | 68,97,115,32,105,115,116,32,101,105,110,32,66,101,105,115,112,105,101,108 | 446173206973742065696e20426569737069656c |
5.Other
| Recalculation during start: | No |
|---|---|
| Module is retentive: | No |
| Internal designation: | 17772 |
| Category: | Converter |