ASCII→16進数変換ツール
テキストをASCIIの16進数コードに変換したり、その逆を行ったりします。各文字は2桁の16進数値に変換されます。
このツールの使い方
- 1
Pick a direction from the dropdown: 'Text -> Hex' to encode, or 'Hex -> Text' to decode.
- 2
Type or paste your input into the text box.
- 3
Read the converted result in the output box below — it updates live as you type.
- 4
For decoding, separate each hex value with a space (for example '48 65 6C 6C 6F').
ASCII→16進数変換ツールとは何ですか?
テキスト内の各文字は、数値に対応しています(基本的なラテン文字はASCII、それ以外はすべてUnicodeのコードポイント)。16進数は、それらの数値をコンパクトに表現する方法です。「A」は10進数で65、16進数で41になります。この変換は、テキストのエンコーディングの問題をデバッグしたり、バイナリプロトコルを扱ったり、エスケープシーケンスを構築したりするのに役立ちます。
よくある活用例
Inspecting invisible control characters (tabs, newlines, non-breaking spaces) that are breaking a parser or CSV import.
Hand-building escape sequences like \x41 for code, regex, or shell snippets.
Decoding a space-separated hex dump pasted from a log, packet capture, or protocol trace back into readable text.
Teaching or learning how characters map to numeric codes and base-16 notation.
Quickly checking the hex code of a specific symbol before hard-coding it into a config or test fixture.
Spotting smart quotes or homoglyphs by confirming whether a character is the plain ASCII version or a higher code point.
関連ツール
JSON→CSV変換ツール
オブジェクトのJSON配列をCSV形式に変換します。APIのデータをスプレッドシートにエクスポートするのに最適です。
CSVからJSONへの変換ツール
CSVデータをオブジェクトのJSON配列へ変換します。最初の行はヘッダーとして扱われます。
CSVからSQL INSERTへ
CSVデータからSQLのINSERT文を生成します。CSVエクスポートをデータベースにインポートするのに役立ちます。
2進数→16進数変換ツール
2進数を16進数に変換します。同じ値を表すのに、16進数は2進数より4倍コンパクトです。
16進数→2進数変換ツール
16進数を2進数に変換します。各16進数の桁はちょうど4桁の2進数に展開されます。
10進数から2進数への変換ツール
10進数を2進数、16進数、8進数へ、すべての基数に一度に変換します。