Da ottale a esagono

Converti facilmente i numeri ottali in esadecimali

Strumento di conversione

0 characters

Enter an octal number (0-7). The conversion will automatically handle both positive and negative numbers.

Rappresentazione binaria:

Rappresentazione decimale:

Informazioni sui sistemi numerici

Sistema ottale

The octal numeral system, or oct for short, is the base-8 number system, and uses the digits 0 to 7. Octal numerals can be made from binary numerals by grouping consecutive binary digits into groups of three (starting from the right).

Sistema esadecimale

Il sistema numerico esadecimale, o esadecimale in breve, è un sistema numerico in base 16 che utilizza le cifre 0-9 e le lettere A-F per rappresentare i valori 10-15. L'esadecimale è comunemente usato nell'informatica e nell'elettronica digitale perché fornisce una rappresentazione più intuitiva dei valori codificati binari.

Tabella di conversione da ottale a esadecimale

Octal Hexadecimal Octal Hexadecimal
0 0 10 8
1 1 11 9
2 2 12 A
3 3 13 B
4 4 14 C
5 5 15 D
6 6 16 E
7 7 17 F

Processo di conversione

La conversione da ottale a esadecimale prevede due passaggi principali:

  1. Converti ogni cifra ottale nel suo equivalente binario a 3 bit.
  2. Group the resulting binary digits into sets of four (starting from the right), and convert each group to its hexadecimal equivalent.

Esempio: conversione di ottale "75" in esadecimale

Passaggio 1: converti ogni cifra ottale in binaria a 3 bit:

7 → 111

5 → 101

Passaggio 2: combina le cifre binarie:

111 101

Step 3: Group binary digits into sets of four (from right):

0011 1101

Passaggio 4: converti ogni gruppo a 4 bit in esadecimale:

0011 → 3

1101 → D

Result:

3D

Related Tools