cyberchef_from_hex
Decode hexadecimal byte strings into UTF-8 text or raw character data, handling contiguous hex, spaces, 0x prefixes, and comma delimiters.
Instructions
Converts a hexadecimal byte string back into UTF-8 text or raw character data. Supports raw contiguous hex, space-separated bytes, 0x prefixes, and comma delimiters.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| input | Yes | Hexadecimal string to decode (e.g., '48656c6c6f', '48 65 6c 6c 6f', or '0x480x650x6c0x6c0x6f'). | |
| delimiter | No | Optional delimiter used between hex bytes. Allowed values: 'None' (default, contiguous hex), 'Space' ('48 65'), '0x' ('0x480x65'), or 'Comma' ('48,65'). |