apoc.text.bytes
Function
apoc.text.bytes(text String, charset String)
- returns the given string as bytes.
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?