Skip to content

decode_hex

Decodes bytes from their hexadecimal representation.

decode_hex(bytes: blob|string) -> blob

Decodes bytes from their hexadecimal representation.

The value to decode.

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

encode_hex