base64_decode
Decode a Base64-encoded string back to UTF-8 text. Recovers the original content from encoded data, handling non-ASCII characters correctly.
Instructions
Decode a Base64 string back to UTF-8 text. Handles non-ASCII characters correctly. Returns the decoded UTF-8 string, or an error if the input is not valid Base64. Has no side effects. Use to recover the original text from a Base64-encoded value. Do NOT use to decode binary data — output is always interpreted as UTF-8 text.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| data | Yes | The Base64-encoded string to decode. |