Base64 Encoder
Convert any text - including accents, emoji and non-Latin scripts - into its Base64 representation.
How to use
- Type or paste the text to encode.
- The Base64 output updates as you type.
- Click Copy to copy the result.
Examples
Hello World
Input: Hello, World!
Output: SGVsbG8sIFdvcmxkIQ==
Frequently asked questions
Does it handle Unicode?
Yes. Text is encoded as UTF-8 first, so emoji and non-Latin characters encode correctly.
Is Base64 encryption?
No. Base64 is an encoding, not encryption. Anyone can decode it. Never use it to protect secrets.