ASCII テーブル
10 進数、16 進数、文字を含む ASCII の全セットを閲覧できます。制御文字と印字可能文字を 1 つの読みやすい表にまとめています。
This page is useful when you need a quick decimal-to-hex lookup for protocols, text processing or encoding work.
ASCII reference table
| Dec | Hex | Char | Description |
|---|
概要 ASCII
ASCII is a 7-bit character encoding standard that maps the values 0 through 127 to letters, digits, punctuation and control signals. It remains relevant because many protocols, formats and legacy systems build on top of ASCII-compatible text.
例
32 = 0x20 = スペース 65 = 0x41 = A 10 = 0x0A = Line Feed
よくある質問
ASCII とは何ですか?
ASCII は、一般的な英字、数字、制御文字に対する数値コードを定めた標準的な文字セットです。
スペースの ASCII コードは何ですか?
スペースの ASCII コードは 10 進数で 32、16 進数で 0x20 です。
ASCII と Unicode の違いは何ですか?
ASCII covers only 128 characters. Unicode is a much larger standard that supports characters from many writing systems and symbol sets.