Binary to Hex Converter
Convert any binary number to its hexadecimal representation. Supports spaces, handles invalid characters, and provides instant results.
Hex 出力
例: バイナリから16進数への変換
- バイナリ:
01001000 01100101
16進数:48 65
"01001000 01100101" = 48 65 (H E) - バイナリ:
110011
16進数:33
バイナリを16進数に変換する方法
- バイナリ数値を書き込むか貼り付けます(0と1のみが有効です)。
- バイナリ数値を4ビットのグループに分割します(必要に応じて先頭にゼロを追加します)。
- 各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.