cyberchef_to_hex
Convert UTF-8 text into hexadecimal byte representation with optional custom delimiters for easy data transformation.
Instructions
Converts UTF-8 text or character data into its hexadecimal byte representation with optional custom delimiter formatting.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| input | Yes | Plaintext string to convert into hex bytes. | |
| delimiter | No | Optional delimiter to insert between hex pairs. Allowed values: 'None' (default, e.g. '48656c6c6f'), 'Space' ('48 65'), '0x' ('0x480x65'), or 'Comma' ('48,65'). |