- When should I use Base64URL vs regular?
- In URLs (query strings, path segments), JWTs, JWS, and anywhere +/= would need additional percent-encoding.
- Is padding removed?
- Yes by default (matches JWT spec). Toggle 'include padding' if your consumer requires trailing =.
- Can I mix with regular Base64?
- Not safely. Some decoders accept both; many don't. Pick one variant per context.
- Does it support binary input?
- Yes — upload a file. Useful for embedding binary in JSON-over-URL patterns.