Hex zu Oktal

Konvertieren Sie Hexadezimalzahlen mühelos

Konverter-Tool

0 characters

Enter a hexadecimal number (0-9, A-F). The '0x' prefix is optional. The conversion will automatically handle both positive and negative numbers.

Binäre Darstellung:

Dezimale Darstellung:

Über Zahlensysteme

Hexadezimalsystem

Das hexadezimale Zahlensystem, kurz Hex, ist ein Zahlensystem zur Basis 16, das die Ziffern 0-9 und die Buchstaben A-F verwendet, um die Werte 10-15 darzustellen. Hexadezimal wird häufig in der Datenverarbeitung und in der digitalen Elektronik verwendet, da es eine benutzerfreundlichere Darstellung von binär codierten Werten bietet.

Oktalsystems

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

Hexadezimal- in die Oktaltabelle

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

Umwandlungsprozess

Die Umwandlung von Hexadezimal in Oktal umfasst zwei Hauptschritte:

  1. Konvertieren Sie jede Hexadezimalziffer in ihr binäres 4-Bit-Äquivalent.
  2. Group the resulting binary digits into sets of three (starting from the right), and convert each group to its octal equivalent.

Beispiel: Konvertieren Sie Hex "1A" in Octal

Schritt 1: Konvertieren Sie jede Hexadezimalziffer in eine 4-Bit-Binärdatei:

1 → 0001

A → 1010

Kombiniert: 0001 1010

Step 2: Group binary digits into sets of three (from right):

000 110 100

Schritt 3: Konvertieren Sie jede 3-Bit-Gruppe in Octal:

000 → 0

110 → 6

100 → 4

Result:

064 (leading zeros can be omitted: 64)

Related Tools