Oktal-zu-Hex

Konvertieren von Pantone-Farben in CMYK-Werte für das Druckdesign

Konverter-Tool

0 characters

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

binäre Darstellung:

Dezimaldarstellung:

Über Zahlensysteme

Oktalsystem

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

Hexadezimales System

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.

Oktal- in Hexadezimaltabelle

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

Konvertierungsprozess

Die Konvertierung von Oktal- in Hexadezimaltabelle umfasst zwei Hauptschritte:

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

Beispiel: Konvertieren Sie oktal "75" in hexadezimal

Schritt 1: Konvertieren Sie jede oktale Ziffer in eine 3-Bit-Binärzahl:

7 → 111

5 → 101

Schritt 2: Kombinieren Sie die Binärziffern:

111 101

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

0011 1101

Schritt 4: Konvertieren Sie jede 4-Bit-Gruppe in hexadezimal:

0011 → 3

1101 → D

Result:

3D

Related Tools