Codificar/Decodificar Base64
UTF-8 correcto, variante URL-safe y soporte de archivos
Por qué nos eligen
Privado por diseño
Tu entrada se procesa de forma segura y nunca se vende. Las herramientas del lado del cliente nunca salen de tu navegador.
Instantáneo y gratis
Sin instalar, sin esperas. Resultados en segundos, en tu navegador, en cualquier dispositivo.
Gratis para siempre
Sin registro, sin marcas de agua, sin límites. Todas las herramientas del lado del cliente son de uso libre.
Preguntas frecuentes
Why do other tools garble Chinese/emoji text?⌄
JavaScript’s raw btoa() only handles Latin-1. We encode text to UTF-8 bytes first (TextEncoder), so Chinese, Japanese, emoji and every other script round-trip correctly.
What is URL-safe Base64?⌄
A variant (RFC 4648 §5) that replaces + with -, / with _ and drops = padding, so the result can live inside URLs, filenames and JWTs without escaping. Toggle the URL-safe checkbox to encode or decode it.
Is Base64 encryption?⌄
No — it is an encoding, not encryption. Anyone can decode it instantly. Use it for data transport and embedding, never for hiding secrets.