Common ASCII Codes: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 42: Line 42:
|  123  ||          || 7B                      || {                  || <pre>&amp;#123;</pre> || <center>'{'</center> || || Opening brace
|  123  ||          || 7B                      || {                  || <pre>&amp;#123;</pre> || <center>'{'</center> || || Opening brace
|}
|}
=Relationship to Other Standards=
==UCS==
{{Internal|UCS#US-ASCII|UCS}}

Revision as of 20:44, 25 June 2018

External

Internal

Overview

Decimal Octal Hexadecimal Symbol HTML Code Java Character Representation bash quoted string expansion Description
8 08 BS
&#008;
'\b'
Backspace
9 09 HT
&#009;
'\t'
$'\t'
Horizontal tab
10 012 0A LF
&#10;
'\n'
$'\n', $'\012', $'\x0a'
Line feed (new line)
13 0D CR
&#13;
'\r'
$'\r'
Carriage return
38 046 26 &
&#38;
Ampersand
39 047 27 '
&#39;
Single quote
48 071 30 0
&#65;
'0'
'0'
Zero
57 060 39 9
&#57;
'9'
'9'
Nine
58 3A :
&#58;
':'
Colon
60 074 3C <
&#60;
&lt;
'<'
Less then (or open angle bracket)
65 101 41 A
&#65;
'A'
Uppercase A
85 125 55 U
&#85;
'U'
Uppercase U
91 5B [
&#91;
'['
Opening bracket
93 5D ]
&#93;
']'
Closing bracket
123 7B {
&#123;
'{'
Opening brace