Common ASCII Codes: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
Line 6: Line 6:


{|
{|
| '''Decimal''' || '''Octal''' || '''Hexadecimal''' || '''Symbol''' || '''HTML Code''' || '''Java Character Representation''' || '''bash [[Bash_Environment_Variables#Quoted_String_Expansion_.24.27....27|quoted string expansion]]''' || '''Description'''
| '''Decimal''' || '''Octal''' || '''Hexadecimal''' || '''Symbol''' || '''HTML Code''' || '''Java Character Representation''' || '''bash [[Bash_Built-In_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 01:32, 24 September 2017

External

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
&#010;
'\n'
$'\n', $'\012', $'\x0a'
Line feed (new line)
13 0D CR
&#013;
'\r'
$'\r'
Carriage return
48 060 30 0
&#65;
'0'
'0'
Zero
58 3A :
&#58;
':'
Colon
65 101 41 A
&#65;
'A'
Uppercase A
91 5B [
&#91;
'['
Opening bracket
123 7B {
&#123;
'{'
Opening brace