Common ASCII Codes: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 6: Line 6:


{|
{|
| '''Decimal''' || '''Hexadecimal''' || '''Symbol''' || '''HTML Code''' || '''Java Character Representation''' || '''bash [[Bash_Environment_Variables#Quoted_String_Expansion_.24.7B....7D|quoted string expansion]]''' || '''Description'''
| '''Decimal''' || '''Hexadecimal''' || '''Symbol''' || '''HTML Code''' || '''Java Character Representation''' || '''bash [[Bash_Environment_Variables#Quoted_String_Expansion_.24.27....27|quoted string expansion]]''' || '''Description'''
|-
|-
|  8              || 08                      || BS              || <pre>&amp;#008;</pre> || <center>'\b'</center> || || Backspace
|  8              || 08                      || BS              || <pre>&amp;#008;</pre> || <center>'\b'</center> || || Backspace

Revision as of 23:40, 23 September 2017

External

Overview

Decimal 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 0A LF
&#010;
'\n'
Line feed (new line)
13 0D CR
&#013;
'\r'
Carriage return
58 3A :
&#58;
':'
Colon
91 5B [
&#91;
'['
Opening bracket
123 7B {
&#123;
'{'
Opening brace