apoc.text.hexValue

Function

apoc.text.hexValue(value Integer) - returns the hexadecimal value of the given value.

Signature

apoc.text.hexValue(value :: INTEGER?) :: (STRING?)

Input parameters

Name Type Default

value

INTEGER?

null

Usage Examples

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

"000A"