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

16 進数からバイナリへの変換ツール

1 クリックで任意の 16 進数コードをそのバイナリ表現に変換します。大文字/小文字の 16 進入力をサポートし、スペースを処理し、無効な文字を無視します。
バイナリ出力

Example: Hex to Binary

  • A → 1010
  • 2F → 00101111
  • 1AF3 → 0001101011110011

16 進数をバイナリに変換する方法

  1. 16 進数を貼り付けるか入力します。
  2. 変換 をクリックしてバイナリ出力を表示します。
  3. 必要に応じてバイナリ値をコピーします。

Hex to Binary Table (4-bit mapping)

HexBinary
00000
10001
20010
30011
40100
50101
60110
70111
81000
91001
A1010
B1011
C1100
D1101
E1110
F1111

What is Hex to Binary Conversion?

Hexadecimal (base-16) uses 0-9 and A-F to represent values. Binary (base-2) uses only 0 and 1. Every hex digit equals exactly 4 binary digits (bits), which makes conversion simple and reliable. This is critical in computing, color codes, and low-level data operations.

FAQ

  • How many bits is a hex digit?
    Every hex digit is exactly 4 bits in binary.
  • Can I enter spaces or lowercase letters?
    Yes! The tool ignores spaces and supports a-f, A-F.
  • What if I enter an invalid character?
    The converter will show an error message.
  • Why do programmers use hex and binary?
    Hex is shorter and easier to read, but binary is the real language of computers.