Encode text to Base64 or decode Base64 to text instantly. Free online Base64 converter for data encoding and decoding.
Base64 is a binary-to-text encoding scheme that represents binary data as an ASCII string. It is commonly used to encode data for transmission over media designed to handle text, such as email (MIME) and within JSON or XML documents.
Base64 = btoa(Text) / Text = atob(Base64)Encoding converts each 3 bytes of binary data into 4 Base64 characters (A-Z, a-z, 0-9, +, /). Decoding reverses this process, converting 4 Base64 characters back into 3 bytes of the original data.
| Input | Output |
|---|---|
| Hello World | SGVsbG8gV29ybGQ= |
| SGVsbG8gV29ybGQ= | Hello World |
| toolsconverter.online | dG9vbHNjb252ZXJ0ZXIub25saW5l |