TO_BYTES_HEX_UDF

This is a deprecated version of the SnowConvert documentation, please visit the official site HERE.

Definition

Converts the input numerical value in base 10 to its hexadecimal equivalent.

TO_BYTES_HEX_UDF(INPUT FLOAT)

Parameters

INPUT FLOAT

The numerical value to be converted to hexadecimal.

Returns

A string which is the hexadecimal equivalence.

Usage example

Input:

SELECT TO_BYTES_HEX_UDF('448');

Output:

01c0

Last updated