🔄 Decodificador Base64 — Convertir Base64 a Texto Online
Decode any Base64 string back to plain text or download a file. Also encodes text and files to Base64. Free, instant, no signup.
Paste any Base64 string into the input area and click Decode. The tool instantly decodes it back to readable text. Switch to File mode to decode Base64-encoded files. Works for Base64-encoded images, PDFs, and any binary data.
How to Use
Choose mode
Select Text mode for plain text encoding/decoding, or File mode to encode any file.
Enter your input
Type or paste text, then click Encode or Decode. For files, drag and drop or click to browse.
Copy the output
Click Copy to copy the Base64 output to your clipboard for use in your project.
Frequently Asked Questions
Guía: Codificador/Decodificador Base64
¿Qué es?
Base64 representa datos binarios usando 64 caracteres ASCII imprimibles. Se usa para incrustar imágenes en CSS/HTML, transmitir datos binarios en APIs JSON, y codificar credenciales HTTP Basic Auth.
Base64 no es cifrado — solo transforma datos para transporte seguro en sistemas de texto. Aumenta el tamaño ~33%.
Cómo usar
- Selecciona el modo: Codificar o Decodificar.
- Pega texto o sube un archivo en el área de entrada.
- El resultado aparece instantáneamente.
- Usa "URL safe" si necesitas Base64 en URLs (reemplaza
+/con-_).
Consejos
- Para imágenes en CSS:
background: url('data:image/png;base64,...'). - Las credenciales HTTP Basic Auth son solo Base64 — siempre usa HTTPS encima.
- Base64 URL-safe omite el relleno
=para compatibilidad con URLs.