Hex에서 Octal로

16진수를 8진수로 손쉽게 변환

변환기 도구

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.

이진 표현:

십진법 표현:

숫자 체계 정보

16진법

16진수 숫자 체계 또는 줄여서 16진수는 숫자 0-9와 문자 A-F를 사용하여 값 10-15를 나타내는 base-16 숫자 체계입니다. 16진수는 이진 코딩 값을 보다 인간 친화적으로 표현하기 때문에 컴퓨팅 및 디지털 전자 제품에 일반적으로 사용됩니다.

옥탈 시스템

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

Hexadecimal에서 Octal로의 변환표

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

변환 프로세스

16진수에서 8진수로 변환하려면 두 가지 주요 단계가 포함됩니다.

  1. 각 16진수를 해당하는 4비트 이진 숫자로 변환합니다.
  2. Group the resulting binary digits into sets of three (starting from the right), and convert each group to its octal equivalent.

예: 16진수 "1A"를 8진수로 변환

1단계: 각 16진수를 4비트 바이너리로 변환:

1 → 0001

A → 1010

조합: 0001 1010

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

000 110 100

3단계: 각 3비트 그룹을 8진수로 변환합니다.

000 → 0

110 → 6

100 → 4

Result:

064 (leading zeros can be omitted: 64)

Related Tools