ホーム16進数から10進数へ10進数から16進数へ16進数から2進数へ2進数から16進数へ16進数からテキストへテキストから16進数へ16進数からASCIIへASCIIから16進数へBase64から16進数へ16進数からBase64へ16進数からIPへIPから16進数へお問い合わせ
言語:

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進数に変換する方法

  1. バイナリ数値を書き込むか貼り付けます(0と1のみが有効です)。
  2. バイナリ数値を4ビットのグループに分割します(必要に応じて先頭にゼロを追加します)。
  3. 各4ビットのグループを16進数に変換します。
  4. すべての16進数を組み合わせます。

バイナリから16進数への変換表

Binary (4-bit)Hex
00000
00011
00102
00113
01004
01015
01106
01117
10008
10019
1010A
1011B
1100C
1101D
1110E
1111F

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.