The Base64ToText()
function decodes a base64 encoded string to a text value.
Decoding is carried out using the UTF8 charset.
Syntax
Base64ToText(text)
Returns
A base64 decoded text
Parameters
text
– a base64 encoded text
Examples
Base64ToText("SGVsbG8gd29ybGQ=")
/* returns "Hello world" */