Skip to content

Decodes a hexadecimal string to a binary value.

func.hex_decode_binary(<hex_str>)
func.hex_decode_binary('48656C6C6F')
┌──────────┐
b'Hello'
└──────────┘
HEX_DECODE_BINARY(<hex_str>)
SELECT HEX_DECODE_BINARY('48656C6C6F');
┌───────┐
│ Hello │
└───────┘