- What's the encoding overhead?
- ~33% larger than the original. 3 bytes become 4 chars. Worth it for safe embedding in JSON, XML, HTML, or URLs.
- Standard or URL-safe?
- Standard by default (includes +/=). Toggle for URL-safe (-_= no padding) when embedding in URLs or query strings.
- Does it handle binary files?
- Yes — upload a file to encode. Useful for embedding images as data URIs or encoding binary payloads for APIs.
- Can I paste multiline text?
- Yes — newlines are included in the encoded output. Newlines in the encoded (base64) output are optional line breaks for readability.