- Which Base64 variants are supported?
- Standard (with +/=) and URL-safe (with -_). The tool auto-detects from input characters.
- What if decoding fails?
- Clear error with the position of invalid characters. Common causes: missing padding (=), extra whitespace, or mixing standard and URL-safe alphabets.
- Can it handle binary output?
- Yes — decode to download. Useful for extracting files from data URIs or Base64-encoded binary blobs.
- What about Base64-in-Base64 (double encoding)?
- Decode once, then feed the result back. Each pass removes one layer. Common in scenarios where a Base64 string is embedded in another Base64 payload.