Oktal në Heksadecimal

Konvertoni numrat oktalë në heksadecimalë pa mundim

Mjet Konvertues

0 characters

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

Përfaqësimi Binar:

Përfaqësimi dhjetor:

Rreth Sistemeve të Numrave

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

Sistemi Heksadecimal

Sistemi numerik heksadecimal, ose shkurt heksadecimal, është një sistem numrash me bazë 16 që përdor shifrat 0-9 dhe shkronjat AF për të përfaqësuar vlerat 10-15. Sistemi heksadecimal përdoret zakonisht në informatikë dhe elektronikën dixhitale sepse ofron një përfaqësim më miqësor ndaj njeriut të vlerave të koduara binar.

Tabela e Konvertimit nga Oktali në Heksadecimal

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

Procesi i konvertimit

Konvertimi nga oktal në heksadecimal përfshin dy hapa kryesorë:

  1. Konvertoni çdo shifër oktale në ekuivalentin e saj binar 3-bitësh.
  2. Group the resulting binary digits into sets of four (starting from the right), and convert each group to its hexadecimal equivalent.

Shembull: Konvertoni oktalin "75" në heksadecimal

Hapi 1: Konvertoni çdo shifër oktale në binar 3-bitësh:

7 → 111

5 → 101

Hapi 2: Kombinoni shifrat binare:

111 101

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

0011 1101

Hapi 4: Konvertoni çdo grup 4-bitësh në heksadecimal:

0011 → 3

1101 → D

Result:

3D

Related Tools