// standard · URL-safe · live conversion
Use for email (MIME), data URIs, binary-to-text encoding in most contexts where the output isn't placed in a URL.
Use in URLs, query strings, and JWT signatures. The + and / characters are replaced so the result is URL-safe without percent-encoding.
Encoding overhead:
Base64 expands binary data by ~33% — every 3 bytes of input become 4 Base64 characters.
Padding = characters align output to a 4-char boundary; stripping them is valid but the decoder must handle the missing padding.