javascript
Loading editor...
Encode and decode text and files to/from Base64 format
Use URL-safe characters (- and _ instead of + and /)
Encode each line separately (useful for multiple entries)
Split output into 76-character lines per RFC 2045
Base64 is a binary-to-text encoding scheme that converts data to 64 ASCII characters. Increases size by ~33%. Not encryption - anyone can decode.
Client-side Processing
All encoding/decoding happens in your browser. No data is sent to servers.
Real-time Processing
See results instantly as you type.
URL-safe Support
Support for both standard and URL-safe Base64 formats.