16進数→2進数変換ツール
16進数を2進数に変換します。各16進数の桁はちょうど4桁の2進数に展開されます。
このツールの使い方
- 1
Type or paste a hex value into the input box, for example 1A2B or 0x1A2B.
- 2
An optional leading 0x and any spaces are removed automatically before conversion.
- 3
Read the binary result below the box, shown as 4-bit groups separated by spaces.
- 4
If the box stays empty, check your input contains only the digits 0-9 and letters A-F.
16進数→2進数変換ツールとは何ですか?
16進数から2進数への変換は、桁ごとの置き換えです。0→0000、F→1111、というように対応します。結果は読みやすくするためにニブル(4ビットのまとまり)単位でグループ化されます。メモリアドレス、カラー値、機械語命令を、その基盤となるビットパターンとして読み取るのに役立ちます。
よくある活用例
Decoding a hex color like FF8800 into its red, green, and blue bit patterns when working on a design or shader.
Inspecting the binary layout of a memory address or register value printed by a debugger.
Teaching or learning how each hex digit corresponds to a 4-bit nibble in a computer-science class.
Checking the bit pattern of a hardware flag or bitmask defined in hex in firmware or driver code.
Translating a hex opcode or byte from a disassembly into binary to read individual instruction fields.
Verifying that a hex constant in a config file expands to the bit pattern you expect before committing it.
関連ツール
JSON→CSV変換ツール
オブジェクトのJSON配列をCSV形式に変換します。APIのデータをスプレッドシートにエクスポートするのに最適です。
CSVからJSONへの変換ツール
CSVデータをオブジェクトのJSON配列へ変換します。最初の行はヘッダーとして扱われます。
CSVからSQL INSERTへ
CSVデータからSQLのINSERT文を生成します。CSVエクスポートをデータベースにインポートするのに役立ちます。
2進数→16進数変換ツール
2進数を16進数に変換します。同じ値を表すのに、16進数は2進数より4倍コンパクトです。
10進数から2進数への変換ツール
10進数を2進数、16進数、8進数へ、すべての基数に一度に変換します。
ASCII→16進数変換ツール
テキストをASCIIの16進数コードに変換したり、その逆を行ったりします。各文字は2桁の16進数値に変換されます。