Binario a Hex
Convierte binario a hexadecimal al instante.
¿Esta herramienta respondió tu pregunta?
Gracias: esto nos ayuda a mejorar la herramienta.
Convierte binario a hexadecimal al instante.
Fórmula
Hexadecimal = convert binary to decimal first, then convert decimal to hex
hex = parseInt(binary, 2).toString(16)
Group the binary digits in sets of 4 from the right; each group maps to one hex digit. For example, 1111 = 15 → f.
Preguntas frecuentes
- ¿Cuánto es el binario 11111111 en hex?
- Agrupa en 1111 1111 = FF.
- ¿Por qué agrupar los dígitos binarios de a cuatro para hex?
- Porque 2^4 = 16, la base del hexadecimal. Cada nibble (4 bits) se mapea directamente a un dígito hex 0-F.
- ¿Puedo convertir binario a hex sin pasar por decimal?
- Sí: el atajo de agrupación en nibbles es más rápido y confiable que un paso intermedio por decimal.