Base64 Encoder & Decoder
Encode plain text to Base64 or decode Base64 back to readable text.
Quick samples
Input
Pick encode or decode, then paste the payload.
Result
Review the encoded or decoded payload, then copy the format you need.
Copy wrapped or compact Base64 output after encoding.
Standard
41
56
No wrapping
No
Documentation
Base64 Encoder & Decoder
About this tool
Base64 Encoder & Decoder encodes and decodes Base64 with URL-safe alphabet, padding, wrap, and binary preview options. Use it when text or bytes need to pass through a Base64-only step.
Key options
URL-safe mode uses - and _ instead of + and /.
Padding controls whether trailing = characters are kept.
Wrap settings control line breaks in encoded output.
Gotchas
Base64 is encoding, not encryption. Anyone can decode it.
Match the alphabet and padding expectations of the target system before copying the result.
Key use cases
- -Encode short tokens, credentials, or snippets.
- -Decode copied Base64 values for inspection.
- -Clean wrapped Base64 from logs, emails, or exports.
- -Check binary payloads without assuming they are readable text.