Decode Base64 strings back into readable text.
| Input | Output |
|---|---|
| SGVsbG8sIFdvcmxkIQ== | Hello, World! |
| Zm9v | foo |
| dGVzdA== | test |
The input contains characters outside the Base64 alphabet or wrong padding.
This tool decodes to text; binary payloads need byte-level handling.
No — decoding is trivial. Never treat Base64 as protection for secrets.