Base64 Converter

Encode UTF-8 text to Base64 or decode Base64 back to text. Base64 is encoding, not encryption — anyone with the encoded value can read it.

Processed in your browserNo upload, no signup

Text

0 lines · 0 chars

Base64

0 lines · 0 bytes
Your input is processed locally and isn't uploaded for processing. Verify by opening DevTools → Network — there are no requests carrying your data.

Base64 Converter examples.

// Encode text → Base64

Hello, world!
SGVsbG8sIHdvcmxkIQ==

// Decode Base64 → text

SGVsbG8sIHdvcmxkIQ==
Hello, world!

Frequently asked questions.

Is Base64 encryption?

No. Base64 is an encoding, not encryption. It is fully reversible and provides no confidentiality.

Does it support UTF-8?

Yes. Text is encoded as UTF-8 bytes before base64 conversion, so emoji and accented characters work correctly.

Is my data uploaded?

No. Encoding and decoding happen entirely in your browser.

Related tools.