Convertitore da esadecimale a binario
Converte i numeri esadecimali in binario. Ogni cifra esadecimale si espande esattamente in 4 cifre binarie.
Come usare questo strumento
- 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.
Che cos'è il convertitore da esadecimale a binario?
La conversione da esadecimale a binario è una sostituzione cifra per cifra: 0 → 0000, F → 1111, e così via. Il risultato viene raggruppato in nibble (blocchi da 4 bit) per facilitarne la lettura. Utile per leggere indirizzi di memoria, valori di colore e istruzioni macchina nel loro schema di bit sottostante.
Casi d'uso comuni
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.
Strumenti correlati
Convertitore da JSON a CSV
Converte un array JSON di oggetti in formato CSV. Perfetto per esportare dati API in fogli di calcolo.
Convertitore da CSV a JSON
Converte i dati CSV in un array JSON di oggetti. La prima riga viene trattata come intestazione.
Da CSV a SQL INSERT
Genera istruzioni SQL INSERT a partire da dati CSV. Utile per importare esportazioni CSV nei database.
Convertitore da binario a esadecimale
Converte i numeri binari in esadecimale. L'esadecimale è 4 volte più compatto del binario per lo stesso valore.
Convertitore da decimale a binario
Converte numeri decimali in binario, esadecimale e ottale, tutte le basi contemporaneamente.
Convertitore da ASCII a esadecimale
Converte il testo in codici esadecimali ASCII e viceversa. Ogni carattere viene convertito nel suo valore esadecimale a 2 cifre.