Conversor de Hexadecimal a Binario
Convierte números hexadecimales a binario. Cada dígito hexadecimal se expande exactamente a 4 dígitos binarios.
Cómo usar esta herramienta
- 1
Type or paste a hex value into the input box, for example 1A2B or 0x1A2B.
- 2
An optional leading 0x and any spaces are removed automatically before conversion.
- 3
Read the binary result below the box, shown as 4-bit groups separated by spaces.
- 4
If the box stays empty, check your input contains only the digits 0-9 and letters A-F.
¿Qué es el Conversor de Hexadecimal a Binario?
La conversión de hexadecimal a binario es una sustitución dígito a dígito: 0 → 0000, F → 1111, y así sucesivamente. El resultado se agrupa en nibbles (bloques de 4 bits) para facilitar la lectura. Útil para leer direcciones de memoria, valores de color e instrucciones de máquina en su patrón de bits subyacente.
Casos de uso comunes
Decoding a hex color like FF8800 into its red, green, and blue bit patterns when working on a design or shader.
Inspecting the binary layout of a memory address or register value printed by a debugger.
Teaching or learning how each hex digit corresponds to a 4-bit nibble in a computer-science class.
Checking the bit pattern of a hardware flag or bitmask defined in hex in firmware or driver code.
Translating a hex opcode or byte from a disassembly into binary to read individual instruction fields.
Verifying that a hex constant in a config file expands to the bit pattern you expect before committing it.
Herramientas relacionadas
Conversor de JSON a CSV
Convierte un array JSON de objetos a formato CSV. Perfecto para exportar datos de API a hojas de cálculo.
Conversor de CSV a JSON
Convierte datos CSV en un array JSON de objetos. La primera fila se trata como encabezado.
CSV a SQL INSERT
Genera sentencias SQL INSERT a partir de datos CSV. Útil para importar exportaciones CSV a bases de datos.
Conversor de Binario a Hexadecimal
Convierte números binarios a hexadecimal. El hexadecimal es 4 veces más compacto que el binario para el mismo valor.
Conversor de Decimal a Binario
Convierte números decimales a binario, hexadecimal y octal, todas las bases a la vez.
Conversor de ASCII a Hexadecimal
Convierte texto a códigos hexadecimales ASCII y viceversa. Cada carácter se convierte en su valor hexadecimal de 2 dígitos.