HEX
Learn how to use the HEX string function in PlaidCloud Lakehouse. Returns the hexadecimal representation of a string or number - with syntax and examples.
Returns the hexadecimal representation of a string or number.
Analyze Syntax
func.hex(<expr>)
Analyze Examples
func.hex(255)
┌──────┐
│ 'FF' │
└──────┘
SQL Syntax
HEX(<expr>)
SQL Examples
SELECT HEX(255);
┌────┐
│ FF │
└────┘