Octal kanggo Hex

Ngonversi nomer oktal dadi heksadesimal kanthi gampang

Alat Konverter

0 characters

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

Representasi binar:

Perwakilan desimal:

Babagan Sistem Nomer

Sistem Oktal

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).

Sistem Heksadesimal

Sistem angka heksadesimal, utawa singkatan hex, yaiku sistem angka basis-16 sing nggunakake angka 0-9 lan huruf AF kanggo makili angka 10-15. Heksadesimal umume digunakake ing komputasi lan elektronik digital amarga menehi perwakilan sing luwih ramah manungsa saka nilai kode binar.

Tabel Konversi Oktal menyang Heksadesimal

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

Proses Konversi

Ngonversi saka octal menyang heksadesimal kalebu rong langkah utama:

  1. Ngonversi saben digit octal menyang sing padha karo biner 3-bit.
  2. Group the resulting binary digits into sets of four (starting from the right), and convert each group to its hexadecimal equivalent.

Conto: Ngonversi Octal "75" dadi Heksadesimal

Langkah 1: Ngonversi saben digit oktal dadi biner 3-bit:

7 → 111

5 → 101

Langkah 2: Gabungke digit binar:

111 101

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

0011 1101

Langkah 4: Ngonversi saben klompok 4-bit dadi heksadesimal:

0011 → 3

1101 → D

Result:

3D

Related Tools