Base64ToText
Last updated
Was this helpful?
The Base64ToText() function decodes a base64 encoded string to a text value. Decoding is carried out using the UTF8 charset.
This function is NOT SQL compatible. For more information about SQL compatibility, see our documentation.
Returns a base64 decoded text
Returns Invalid expressionif one of the parameter values is unknown.
Base64ToText(text)Base64ToText("SGVsbG8gd29ybGQ=")
=> "Hello world"
Base64ToText([simple tekst not base64])
=> Invalid expression
text
text
☑️
a base64 encoded text
Last updated
Was this helpful?
Was this helpful?