Convertisseurs
Base64 Encode / Decode
Convert plain text to Base64 and back.
Pourquoi utiliser cet outil
03Encode or decode Base64 values directly in the browser for quick debugging and formatting work.
Base64 Tool makes it easy to inspect or transform encoded strings without leaving the page.
It is useful when working with APIs, tokens, and embedded assets.
Comment l'utiliser
02Vérifications rapides avant de copier
03Confirm the input is the format you intended.
Scan the result before using it in a document, URL, config, or message.
Copy only the output you need.
FAQ
03
Can I decode invalid Base64?
If the input contains characters outside the Base64 alphabet (A–Z, a–z, 0–9, +, /, =) or has incorrect padding, the decoder returns an empty result without crashing. This is intentional — a single corrupt character can shift the entire byte boundary. If you get an empty output, check whether the input contains line breaks, spaces, or URL-safe characters like - and _ (which belong to Base64url, a variant used in JWTs and URL tokens).
Does the text leave the browser?
No. Encoding and decoding happen entirely in the browser tab.
Can I decode Base64 images or binary data?
The tool is designed for text content. Binary or image Base64 may not decode cleanly to readable text.
Outils liés
03Payload Decoder→
Decode URL/Base64 payloads, normalize JSON, and inspect timestamps from one debugging workspace.
URL Encoder / Decoder→
Encode and decode URL-safe text values.
JSON Formatter→
Format, minify, and validate JSON in one place.