BASE64_DECODE
Description
Returns the original string by decoding the provided Base64-encoded input. If the input is not valid Base64, the function returns an error.
Syntax
BASE64_DECODE(encoding) -> String
Parameters
| Parameter | Data Type | Required | Description |
|---|---|---|---|
| encoding | String | Yes | The Base64-encoded string to decode. |
Example
BASE64_DECODE("RGF0YSBTeW5jIFBybw==")
-- Returns "Data Sync Pro".