Base64 Encode
Encode text to Base64 — payloads, certificates, attachments.
Runs in your browser — your data never leaves it
Paste, type, or drop a file. Runs as you type.
Output appears here as you type.
Worked example
helloaGVsbG8=This example is one of Base64 Encode's test cases — if the tool stopped producing this output, the build would fail.
Questions
- Does it handle non-English characters?
- Yes. It encodes through UTF-8 explicitly, so café, 日本語, and emoji round-trip correctly. Many browser Base64 tools use raw btoa and mangle exactly these.
- Can I encode a certificate or a file?
- Paste text of any kind. For binary files, this tool takes text input — encode the file with your OS tooling instead.
Related tools
Base64 DecodeEncoders
Decode Base64 back to text, UTF-8 safe.
URL EncodeEncoders
Percent-encode text for URLs and query strings.
URL DecodeEncoders
Decode percent-encoded URL text back to readable form.
JWT DecoderEncoders
Read a JWT's header and claims — it never leaves your browser, and we never verify the signature.