Base 64 Encode | ENCODE_BASE64
Syntax
ENCODE_BASE64( [value] )
Parameters
value
A TEXT value to encode.
If it is not a TEXT value, it will be converted to one with the STRING operation.
Return Value
A Base 64 encoded TEXT value.Description
Encode a TEXT value as Base 64.Examples
ENCODE_BASE64("some text") # returns "c29tZSB0ZXh0"