decode_hex
Convert hexadecimal strings into readable UTF-8 text, ASCII characters, or raw byte data for blockchain transaction analysis and data interpretation.
Instructions
Decode hex string to UTF-8, ASCII, and bytes
Input Schema
Name | Required | Description | Default |
---|---|---|---|
hex | Yes | Hex string to decode |
Input Schema (JSON Schema)
{
"properties": {
"hex": {
"description": "Hex string to decode",
"type": "string"
}
},
"required": [
"hex"
],
"type": "object"
}