Skip to main content
Version: v4.24

decode_hex

Decodes bytes from their hexadecimal representation.

decode_hex(bytes: blob|string) -> blob

Description

Decodes bytes from their hexadecimal representation.

bytes: blob|string

The value to decode.

Examples

Decode a blob from hex

from {bytes: "54656E7A6972"}
decoded = bytes.decode_hex()
{bytes: "54656E7A6972", decoded: "Tenzir"}

Decode a mixed-case hex string

from {bytes: "4e6f6E6365"}
decoded = bytes.decode_hex()
{bytes: "4e6f6E6365", decoded: "Nonce"}

See Also

encode_hex