Base64 Encoder
Encode or decode Base64 strings
Top-level workflow
Handle Base64, URLs, HTML entities, binary text, byte views, and the boundaries between encoding, escaping, hashing, and encryption.
Use this when text changed shape in transit and you need to know whether it was encoded, escaped, hashed, or encrypted.
Encode or decode Base64 strings
Convert text to binary and back
Related
Encode text as HTML entities or decode entities back to text
Convert images to Base64 data URIs and back
Encode or decode URL strings
Follow one string through common transformations so you know what can be decoded and what cannot.
Convert a small image into an embeddable data URI and know when that tradeoff is acceptable.
Encode query values so spaces, ampersands, and punctuation do not split the URL.
Decode entity-heavy text so copied content can be reviewed without losing the original meaning.
Decode binary character bytes and confirm the result before using it as text.