Common ASCII Codes: Difference between revisions
Jump to navigation
Jump to search
Line 65: | Line 65: | ||
| 124 || || 7C || | || <pre>&#124;</pre> || <center>'|'</center> || || || Vertical bar | | 124 || || 7C || | || <pre>&#124;</pre> || <center>'|'</center> || || || Vertical bar | ||
|- | |- | ||
| 125 || || 7D || | | 125 || || 7D || } || <pre>&#125;</pre> || <center>'}'</center> || || || Closing brace | ||
|- | |- | ||
| 127 || 177 || 7F || || <pre>&#127;</pre> || || || || <span id='Delete'></span>Delete (the last [[Character_Encoding#Code_Point|code point]] of the ASCII [[Character_Encoding#Code_Space|code space]]) | | 127 || 177 || 7F || || <pre>&#127;</pre> || || || || <span id='Delete'></span>Delete (the last [[Character_Encoding#Code_Point|code point]] of the ASCII [[Character_Encoding#Code_Space|code space]]) | ||
|} | |} |
Latest revision as of 20:02, 9 November 2021
External
Internal
Overview
Control Characters
Decimal | Octal | Hexadecimal | Symbol | HTML Code | Java Character Representation | U+n Unicode Notation | bash quoted string expansion | Description |
0 | 000 | 00 | NUL | � |
Null character | |||
8 | 08 | BS |  |
Backspace | ||||
9 | 09 | HT | 	 |
"\u0009" | Horizontal tab | |||
10 | 012 | 0A | LF | |
"\u000A" | Line feed (new line) | ||
13 | 0D | CR | |
"\u000D" | Carriage return |
Printable Characters
Decimal | Octal | Hexadecimal | Symbol | HTML Code | Java Character Representation | U+n Unicode Notation | bash quoted string expansion | Description |
32 | 040 | 20 |   |
' ' | "\u0020" | Space | ||
38 | 046 | 26 | & | & |
"\u0026" | $'\ 046' | Ampersand | |
39 | 047 | 27 | ' | ' |
$'\ 047' | Single quote | ||
42 | 052 | 2A | * | * |
$'\ 052' | Star | ||
48 | 071 | 30 | 0 | A |
Zero | |||
57 | 060 | 39 | 9 | 9 |
Nine | |||
58 | 3A | : | : |
Colon | ||||
60 | 074 | 3C | < | < < |
Less then (or open angle bracket) | |||
61 | 075 | 3D | = | = |
Equal | |||
65 | 101 | 41 | A | A |
"\u0041" | Uppercase A | ||
85 | 125 | 55 | U | U |
Uppercase U | |||
91 | 5B | [ | [ |
Opening bracket | ||||
93 | 5D | ] | ] |
Closing bracket | ||||
96 | 140 | 60 | ` | ` |
Back tick | |||
123 | 7B | { | { |
Opening brace | ||||
124 | 7C | | | | |
Vertical bar | ||||
125 | 7D | } | } |
Closing brace | ||||
127 | 177 | 7F |  |
Delete (the last code point of the ASCII code space) |