apoc.text.base64Encode

Function

apoc.text.base64Encode(text String) - encodes the given string with Base64.

Signature

apoc.text.base64Encode(text :: STRING?) :: (STRING?)

Input parameters

Name Type Default

text

STRING?

null

Usage Examples

Capitalise the first letter of the word with
RETURN apoc.text.base64Encode("neo4j") AS output;
Table 1. Results
output

"bmVvNGo="