apoc.text.bytes
Function APOC Core
apoc.text.bytes(text,[charset]) - return bytes of the text
Usage Examples
RETURN apoc.text.bytes("Neo4j") AS output;
output |
---|
[78, 101, 111, 52, 106] |
RETURN apoc.text.bytes("Jesús") AS output;
output |
---|
[74, 101, 115, 195, 186, 115] |
Was this page helpful?