Base64 Encoder/Decoder

Encode or decode Base64 strings.

Frequently Asked Questions

What is Base64 encoding?
Base64 is an encoding scheme that converts binary data into ASCII strings. It is widely used in email attachments, data URIs, and JWT tokens.
Is Base64 encryption?
No. Base64 is encoding, not encryption. Anyone can easily decode it, so it should not be used to protect sensitive data.

Other Tools