2진수를 16진수로 변환하기
어떤 바이너리 숫자든 해당 16진수 표현으로 변환합니다. 공백을 지원하며 유효하지 않은 문자를 처리하고 즉시 결과를 제공합니다.
16진수 출력
예시: 이진을 16진수로
- 이진:
01001000 01100101
16진수:48 65
"01001000 01100101" = 48 65 (H E) - 이진:
110011
16진수:33
이진을 16진수로 변환하는 방법
- 이진 숫자를 작성하거나 붙여넣기합니다 (0과 1만 유효).
- 이진 숫자를 4비트 그룹으로 나눕니다 (필요시 선행 0 추가).
- 각 4비트 그룹을 해당 16진수로 변환합니다.
- 모든 16진수 숫자를 결합합니다.
이진을 16진수로 변환 테이블
Binary (4-bit) | Hex |
---|---|
0000 | 0 |
0001 | 1 |
0010 | 2 |
0011 | 3 |
0100 | 4 |
0101 | 5 |
0110 | 6 |
0111 | 7 |
1000 | 8 |
1001 | 9 |
1010 | A |
1011 | B |
1100 | C |
1101 | D |
1110 | E |
1111 | F |
What is Binary? Why Convert to Hex?
Binary uses only 0 and 1. It's the native language of computers. Hexadecimal makes binary shorter and easier to read for humans. For example, a byte (8 bits) in binary is two hex digits (e.g. 01001000 = 48).
FAQ
- How many bits is a hex digit?
One hex digit equals 4 binary bits. - What if my binary number has spaces?
No problem! The tool ignores spaces and other non-binary characters. - What is binary used for?
All digital data and computers operate in binary.