ASCII to Hex Converter
ASCIIまたはテキスト文字列を即座に16進コードに変換します。カスタム区切り文字、出力のコピー、サンプル入力、および以下の完全なASCII文字テーブルをサポートしています。
ASCIIを16進数に変換する方法
- ASCII/テキストを入力フィールドに入力または貼り付けます。
- 区切り文字を選択します(スペース、コンマ、ダッシュ、またはなし)。
- 下の16進数の出力を取得するために変換をクリックします。
- 16進数の出力をコピーして、お好きな場所で使用します。
例:ASCIIから16進数へ
- ASCII入力:
Hello
- 16進数の出力:
48 65 6C 6C 6F
Hello
→48 65 6C 6C 6F
ASCIIテーブル
文字 | Hex | Decimal |
---|---|---|
A | 41 | 65 |
B | 42 | 66 |
C | 43 | 67 |
a | 61 | 97 |
b | 62 | 98 |
c | 63 | 99 |
0 | 30 | 48 |
1 | 31 | 49 |
! | 21 | 33 |
? | 3F | 63 |
Where is ASCII to Hex Used?
ASCII to hex conversion is used in programming, networking, debugging, embedded systems, and anywhere byte-level data is displayed or processed. Hexadecimal is shorter and more readable for humans than binary, and widely supported by all platforms.
FAQ
- Q: Does it support Unicode characters?
A: This tool is designed for standard ASCII (single byte, 0-127). Extended characters may have different codes in Unicode. - Q: Can I use custom delimiters?
A: Yes, choose one from the list or enter your own string (comma, space, dash, etc.). - Q: How do I convert hex back to ASCII?
A: Use our Hex to ASCII tool for reverse conversion.