Base Encoding Converter
Convert text between Base32, Base58, Base62, Base64, and Hex encodings
Select an encoding format and enter text to convert
About Encoding Formats
Base Encoding Converter
Convert text between Base32, Base58, Base62, Base64, and Hex encodings
Features
- Convert between Base16 (hex), Base32 (RFC 4648), Base58 (Bitcoin alphabet), Base62 (alphanumeric), Base64 (standard)
- Base64 is the RFC 4648 standard variant (`+/` alphabet, `=` padding) — URL-safe variant (`-_`, no padding) is NOT separately supported
- Bidirectional: encode any base from any other
- Live conversion as you type
- Runs entirely in your browser
How to use
- Selecciona el formato de codificación deseado (Base32, Base58, Base62, Base64 o Hex).
- Elige el modo Codificar o Decodificar.
- Ingresa o pega tu texto y ve los resultados instantáneos.
- Haz clic en Copiar para copiar la salida a tu portapapeles.
Tips & Best Practices
- Base64 standard uses `+` and `/` which need URL-encoding in URLs. For URL-safe Base64, swap `+`→`-` and `/`→`_` manually (and drop the `=` padding).
- Base58 (Bitcoin) omits visually similar characters (0, O, I, l) — useful for human-typeable hashes.
- Base32 (RFC 4648) is the format TOTP authenticator apps use for their secret.
- Hex (Base16) is what hash functions output; standard for SHA-256 / MD5 / etc.
- Round-trip a value through encoding/decoding to verify integrity before using as a checksum.
FAQ
¿Cuál es la diferencia entre Base32, Base58, Base62 y Base64?
Cada codificación usa un alfabeto y conjunto de caracteres diferente. Base32 usa A-Z y 2-7 (32 caracteres), Base58 omite caracteres ambiguos como 0, O, I, l (usado en Bitcoin), Base62 usa todos los caracteres alfanuméricos (0-9, A-Z, a-z), y Base64 usa A-Z, a-z, 0-9, +, / (64 caracteres).
¿Se envían mis datos a algún servidor?
No. Toda la codificación y decodificación se realiza completamente en tu navegador usando JavaScript. No se transmiten datos a ningún servidor.
¿Puedo decodificar direcciones Bitcoin Base58?
Esta herramienta usa el alfabeto estándar Bitcoin Base58 (123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz) para codificación y decodificación.
¿Es gratuita esta herramienta?
Sí, esta herramienta es completamente gratuita sin necesidad de registro. No hay límites de uso ni costos ocultos.
¿Funciona esta herramienta sin conexión?
Una vez cargada la página, la herramienta funciona completamente en tu navegador sin necesidad de conexión a internet.