Base64

Encode and decode text and files to/from Base64 format

URL-safe Base64

Use URL-safe characters (- and _ instead of + and /)

Line-by-line encoding

Encode each line separately (useful for multiple entries)

Base64 decoding reverses encoding, converting text back to original format. Essential for extracting embedded data, debugging APIs, and reading encoded content.

Instant text conversion
Format validation
URL-safe support
Security risk: not encryption
Extract images from Data URLs
Read MIME email attachments
Debug API responses
Inspect tokens and credentials
javascript
Loading editor...
python
Loading editor...

Base64 Information

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.