apoc.text.hexValue

Details

Syntax

apoc.text.hexValue(value)

Description

Returns the hexadecimal value of the given value.

Arguments

Name

Type

Description

value

INTEGER

The value to convert into a hexidecimal value represented as a string.

Returns

STRING

Usage Examples

RETURN apoc.text.hexValue(10) AS output;
Results
output

"000A"