Base64 Encode / Decode

Convert text to Base64 or decode Base64 back to text. Runs in your browser.

{ }
JSON
🔗
URL Encode
🔑
Password
🌐
IP Lookup

FAQ

What is Base64?

Base64 is a binary-to-text encoding that converts data into ASCII characters using 64 symbols (A-Z, a-z, 0-9, +, /). It's used to embed binary data in text formats like JSON, XML, HTML, and email.

Is Base64 secure?

No. Base64 is encoding, not encryption. Anyone can decode it. Never use Base64 to protect sensitive data — use proper encryption instead.