Encoding
Base64 Encoder / Decoder
Convert text to and from Base64, including URL-safe output. Handles full UTF-8 correctly, so emoji and non-Latin scripts survive the round trip.
Input
Output
- Input length
- 0
- Output length
- 0
- Size change
- —
Handy to know
-
Kubernetes stores secret values Base64-encoded.
kubectl get secret x -o jsonpath='{.data.password}'gives you a string you can paste straight in here. - Base64 is encoding, not encryption — it hides nothing from anyone.
-
URL-safe Base64 swaps
+/for-_and drops the=padding, which is what JWTs use.
Runs entirely in your browser — nothing you type here is uploaded, logged or stored. Privacy policy