Base64 Decoder

Decode Base64-encoded strings back to readable text. Paste any Base64 string to see what it decodes to.

Common Values

InputText
SGVsbG8=Hello
V29ybGQ=World
aGVsbG8gd29ybGQ=hello world
dGVzdA==test
YWRtaW4=admin
cGFzc3dvcmQ=password

How It Works

Base64 decoding is the reverse of encoding. Each group of 4 Base64 characters decodes back to 3 bytes. The "=" padding characters indicate that the original data was not a multiple of 3 bytes. For example, "SGVsbG8=" decodes to "Hello".

Worked Examples

Base64Text
SGVsbG8=Hello
V29ybGQ=World
Zm9vfoo
YmFybar
dGVzdA==test
YWJjabc

Related Conversions

Frequently Asked Questions