Skip to main content
Back to Dev Tools

Base64 Encoder / Decoder

Encode and decode text to Base64 directly in your browser

Base64 is an encoding scheme that converts binary data into an ASCII text string using a 64-character alphabet (A-Z, a-z, 0-9, +, /). It is commonly used to transmit binary data in text-only contexts such as emails, URLs, or JSON. This tool encodes text to Base64 and decodes Base64 back to plain text.

Example: the text "Hola mundo" is encoded as SG9sYSBtdW5kbw==.

To learn more about Base64 and how to use it from the terminal, check out the article Base64 in the terminal .