3
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

小さな ASCII アスキーコード表(文字コード 一覧)

Last updated at Posted at 2021-04-07

たまに見たくなったときに検索しても大きいだけの見づらい表ばかり見つかるので小さい ASCII コード表を作りました。まあ ascii コマンドでもいいんですが、必ずしも入っているとは限らないので。いつの間にか「小さな ASCII」で検索できるようになってました。ヨシ

ASCII コード表

| HEX     |  +0  +1  +2  +3  +4  +5  +6  +7 |  +8  +9  +A  +B  +C  +D  +E  +F |
|     OCT |                                 | +10 +11 +12 +13 +14 +15 +16 +17 |
|=========|=================================|=================================|
| 00h:000 | NUL SOH STX ETX EOT ENQ QCK BEL | BS  HT  LF  VT  FF  CR  SO  SI  |
| 10h:020 | DLE DC1 DC2 DC3 DC4 NAK SYN ETB | CAN EM  SUB ESC FS  GS  RS  US  |
| 20h:040 | SP   !   "   #   $   %   &   '  |  (   )   *   +   ,   -   .   /  |
| 30h:060 |  0   1   2   3   4   5   6   7  |  8   9   :   ;   <   =   >   ?  |
| 40h:100 |  @   A   B   C   D   E   F   G  |  H   I   J   K   L   M   N   O  |
| 50h:120 |  P   Q   R   S   T   U   V   W  |  X   Y   Z   [   \   ]   ^   _  |
| 60h:140 |  `   a   b   c   d   e   f   g  |  h   i   j   k   l   m   n   o  |
| 70h:160 |  p   q   r   s   t   u   v   w  |  x   y   z   {   |   }   ~  DEL |

2進数 / 8進数 / 10進数 / 16進数 対応表

| 0: 000 | 1: 001 | 2: 010 | 3: 011 | 4: 100 | 5: 101 | 6: 110 | 7: 111 |
| 8:1000 | 9:1001 | A:1010 | B:1011 | C:1100 | D:1101 | E:1110 | F:1111 |
| HEX:BIN  (DEC)  |  (10)  |  (11)  |  (12)  |  (13)  |  (14)  |  (15)  |

ASCII コード表(10進数対応版)

| HEX     |  +0  +1  +2  +3  +4  +5  +6  +7 |  +8  +9  +A  +B  +C  +D  +E  +F |
|     OCT |                                 | +10 +11 +12 +13 +14 +15 +16 +17 |
|=========|=================================|=================================|
|     DEC |---0---1---2---3---4---5---6---7-|---8---9--10--11--12--13--14--15-|
| 00h:000 | NUL SOH STX ETX EOT ENQ QCK BEL | BS  HT  LF  VT  FF  CR  SO  SI  |
|         |--16--17--18--19--20--21--22--23-|--24--25--26--27--28--29--30--31-|
| 10h:020 | DLE DC1 DC2 DC3 DC4 NAK SYN ETB | CAN EM  SUB ESC FS  GS  RS  US  |
|         |--32--33--34--35--36--37--38--39-|--40--41--42--43--44--45--46--47-|
| 20h:040 | SP   !   "   #   $   %   &   '  |  (   )   *   +   ,   -   .   /  |
|         |--48--49--50--51--52--53--54--55-|--56--57--58--59--60--61--62--63-|
| 30h:060 |  0   1   2   3   4   5   6   7  |  8   9   :   ;   <   =   >   ?  |
|         |--64--65--66--67--68--69--70--71-|--72--73--74--75--76--77--78--79-|
| 40h:100 |  @   A   B   C   D   E   F   G  |  H   I   J   K   L   M   N   O  |
|         |--80--81--82--83--84--85--86--87-|--88--89--90--91--92--93--94--95-|
| 50h:120 |  P   Q   R   S   T   U   V   W  |  X   Y   Z   [   \   ]   ^   _  |
|         |--96--97--98--99-100-101-102-103-|-104-105-106-107-108-109-110-111-|
| 60h:140 |  `   a   b   c   d   e   f   g  |  h   i   j   k   l   m   n   o  |
|         |-112-113-114-115-116-117-118-119-|-120-121-122-123-124-125-126-127-|
| 70h:160 |  p   q   r   s   t   u   v   w  |  x   y   z   {   |   }   ~  DEL |

コピペ用

記号は ASCII コード順。時々使いたくなりますよね?

!"#$%&'()*+,-./:;<=>?@[\]^_`{|}~
0123456789
ABCDEFGHIJKLMNOPQRSTUVWXYZ
abcdefghijklmnopqrstuvwxyz
3
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?