Common ASCII Codes: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 28: | Line 28: | ||
{| | {| | ||
| '''Decimal''' || '''Octal''' || '''Hexadecimal''' || '''Symbol''' || '''HTML Code''' || '''Java Character Representation''' || '''bash [[Bash_Built-In_Variables#Quoted_String_Expansion_.24.27....27|quoted string expansion]]''' || '''Description''' | | '''Decimal''' || '''Octal''' || '''Hexadecimal''' || '''Symbol''' || '''HTML Code''' || '''Java Character Representation''' || '''[[Character_Encoding#U.2Bn_Notation|U+n Unicode Notation]]''' || '''bash [[Bash_Built-In_Variables#Quoted_String_Expansion_.24.27....27|quoted string expansion]]''' || '''Description''' | ||
|- | |- | ||
| 38 || 046 || 26 || & | | 38 || 046 || 26 || & || <pre>&#38;</pre> || || || || Ampersand | ||
|- | |- | ||
| 39 || 047 || 27 || ' | | 39 || 047 || 27 || ' || <pre>&#39;</pre> || || || || Single quote | ||
|- | |- | ||
| 48 || 071 || 30 || 0 | | 48 || 071 || 30 || 0 || <pre>&#65;</pre> || <center>'0'</center> || || <center>'0'</center>|| Zero | ||
|- | |- | ||
| 57 || 060 || 39 || 9 | | 57 || 060 || 39 || 9 || <pre>&#57;</pre> || <center>'9'</center> || || <center>'9'</center>|| Nine | ||
|- | |- | ||
| 58 || || 3A || : | | 58 || || 3A || : || <pre>&#58;</pre> || <center>':'</center> || || || Colon | ||
|- | |- | ||
| 60 || 074 || 3C || < || <pre>&#60;</pre> <pre>&lt;</pre> || <center>'<'</center> || || Less then (or open angle bracket) | | 60 || 074 || 3C || < || <pre>&#60;</pre> <pre>&lt;</pre> || <center>'<'</center> || || || Less then (or open angle bracket) | ||
|- | |- | ||
| 65 || 101 || 41 || A | | 65 || 101 || 41 || A || <pre>&#65;</pre> || <center>'A'</center> || || || Uppercase A | ||
|- | |- | ||
| 85 || 125 || 55 || U | | 85 || 125 || 55 || U || <pre>&#85;</pre> || <center>'U'</center> || || || Uppercase U | ||
|- | |- | ||
| 91 || || 5B || [ | | 91 || || 5B || [ || <pre>&#91;</pre> || <center>'['</center> || || || Opening bracket | ||
|- | |- | ||
| 93 || || 5D || ] | | 93 || || 5D || ] || <pre>&#93;</pre> || <center>']'</center> || || || Closing bracket | ||
|- | |- | ||
| 123 || || 7B || { | | 123 || || 7B || { || <pre>&#123;</pre> || <center>'{'</center> || || || Opening brace | ||
|- | |- | ||
| 127 || 177 || 7F || | | 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]]) | ||
|} | |} |
Revision as of 18:13, 26 June 2018
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 | 	 |
Horizontal tab | ||||
10 | 012 | 0A | LF | |
Line feed (new line) | |||
13 | 0D | CR | |
Carriage return |
Printable Characters
Decimal | Octal | Hexadecimal | Symbol | HTML Code | Java Character Representation | U+n Unicode Notation | bash quoted string expansion | Description |
38 | 046 | 26 | & | & |
Ampersand | |||
39 | 047 | 27 | ' | ' |
Single quote | |||
48 | 071 | 30 | 0 | A |
Zero | |||
57 | 060 | 39 | 9 | 9 |
Nine | |||
58 | 3A | : | : |
Colon | ||||
60 | 074 | 3C | < | < < |
Less then (or open angle bracket) | |||
65 | 101 | 41 | A | A |
Uppercase A | |||
85 | 125 | 55 | U | U |
Uppercase U | |||
91 | 5B | [ | [ |
Opening bracket | ||||
93 | 5D | ] | ] |
Closing bracket | ||||
123 | 7B | { | { |
Opening brace | ||||
127 | 177 | 7F |  |
Delete (the last code point of the ASCII code space) |