Base64 Encode / Decode
Encode or decode Base64 strings in your browser.
Base64 encodes binary data into ASCII text for safe transport. Everything runs locally in your browser — nothing is sent to any server.
Privacy: Processing happens entirely in your browser; nothing is transmitted.
Related tools
Frequently asked questions
Why does base64 output end with =?
The = character is padding added so the output length is a multiple of four.