Free Online Base64 Encoder & Decoder
Convert text to Base64 encoding or decode Base64 strings back to readable text. Essential for working with APIs, data URIs, and encoded content.
Loading tool...
Example
Input
Hello, World!Output
SGVsbG8sIFdvcmxkIQ==How to Use the Base64 Encode/Decode
1
Paste text or a Base64 string into the input area.
2
Click Encode to convert to Base64 or Decode to convert back to text.
3
Copy the result.
Frequently Asked Questions
What is Base64 encoding?
Base64 is a binary-to-text encoding scheme that represents binary data as ASCII characters. It's commonly used for embedding data in URLs, emails, and JSON.
Can it handle UTF-8 text?
Yes. The tool correctly encodes and decodes UTF-8 text including special characters and emojis.
Is Base64 encryption?
No. Base64 is an encoding, not encryption. It does not provide security — anyone can decode it.