Base64 is the way to push arbitrary bytes through a text-only channel. The Base64 tool round-trips both directions.
Steps
- Open the Base64 Encoder / Decoder.
- Choose Decode or Encode.
- Paste your input.
- Copy the output.
Notes
- Padding (
=at the end) is required for standard Base64 — most decoders are permissive, but if you see weird trailing characters, padding is the first thing to check. - URL-safe Base64 replaces
+with-and/with_. We auto-detect both.
This is a placeholder. Full guide coming soon.