Text: Base64 Decode
Decode a standard base64 string into its UTF-8 source. Fails if the input is not valid base64 or the bytes are not valid UTF-8.
Example
Input: "aGVsbG8="
Output: "hello"
Parameters
This function has no parameters.
Input
String—REQUIRED
Base64-encoded text.
Output
String
The decoded UTF-8 text.