Base64 Encoder/Decoder
Encode text to Base64 or decode Base64 strings back to plain text.
Input
About Base64
Base64 is a binary-to-text encoding scheme that represents binary data in an ASCII string format. It's commonly used for:
- Embedding images in HTML/CSS
- Sending binary data over text-based protocols
- Storing complex data in URLs or cookies
- Basic data obfuscation (not encryption!)