]> git.ipfire.org Git - thirdparty/man-pages.git/blame - man7/ascii.7
Start of man-pages-5.02: updating .Announce and .lsm files
[thirdparty/man-pages.git] / man7 / ascii.7
CommitLineData
fea681da
MK
1'\" t
2.\" Copyright (c) 1993 Michael Haardt (michael@moria.de)
fea681da 3.\"
1dd72f9c 4.\" %%%LICENSE_START(GPLv2+_DOC_FULL)
fea681da
MK
5.\" This is free documentation; you can redistribute it and/or
6.\" modify it under the terms of the GNU General Public License as
7.\" published by the Free Software Foundation; either version 2 of
8.\" the License, or (at your option) any later version.
9.\"
10.\" The GNU General Public License's references to "object code"
11.\" and "executables" are to be interpreted as the output of any
12.\" document formatting or typesetting system, including
13.\" intermediate and printed output.
14.\"
15.\" This manual is distributed in the hope that it will be useful,
16.\" but WITHOUT ANY WARRANTY; without even the implied warranty of
17.\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18.\" GNU General Public License for more details.
19.\"
20.\" You should have received a copy of the GNU General Public
c715f741
MK
21.\" License along with this manual; if not, see
22.\" <http://www.gnu.org/licenses/>.
6a8d8745 23.\" %%%LICENSE_END
fea681da 24.\"
5ef5222a 25.\" Created 1993-04-02 by Michael Haardt (michael@moria.de)
fea681da
MK
26.\" Modified 1993-07-24 by Rik Faith (faith@cs.unc.edu)
27.\" Modified 1994-05-15 by Daniel Quinlan (quinlan@yggdrasil.com)
28.\" Modified 1994-11-22 by Daniel Quinlan (quinlan@yggdrasil.com)
29.\" Modified 1995-07-11 by Daniel Quinlan (quinlan@yggdrasil.com)
30.\" Modified 1996-12-18 by Michael Haardt and aeb
31.\" Modified 1999-05-31 by Dimitri Papadopoulos (dpo@club-internet.fr)
32.\" Modified 1999-08-08 by Michael Haardt (michael@moria.de)
33.\" Modified 2004-04-01 by aeb
34.\"
b8efb414 35.TH ASCII 7 2016-10-08 "Linux" "Linux Programmer's Manual"
fea681da 36.SH NAME
5ef5222a
MM
37ascii \- ASCII character set encoded in octal, decimal,
38and hexadecimal
fea681da
MK
39.SH DESCRIPTION
40ASCII is the American Standard Code for Information Interchange.
c13182ef 41It is a 7-bit code.
f854adde 42Many 8-bit codes (e.g., ISO 8859-1) contain ASCII as their lower half.
5ef5222a 43The international counterpart of ASCII is known as ISO 646-IRV.
dd3568a1 44.PP
fea681da 45The following table contains the 128 ASCII characters.
dd3568a1 46.PP
31a6818e 47C program \f(CW\(aq\eX\(aq\fP escapes are noted.
fea681da 48.if t \{\
fea681da
MK
49.ft CW
50\}
51.TS
2ce70b17
MK
52l l l l l l l l.
53Oct Dec Hex Char Oct Dec Hex Char
fea681da 54_
5ef5222a 55000 0 00 NUL \(aq\e0\(aq (null character) 100 64 40 @
2ce70b17
MK
56001 1 01 SOH (start of heading) 101 65 41 A
57002 2 02 STX (start of text) 102 66 42 B
58003 3 03 ETX (end of text) 103 67 43 C
59004 4 04 EOT (end of transmission) 104 68 44 D
60005 5 05 ENQ (enquiry) 105 69 45 E
61006 6 06 ACK (acknowledge) 106 70 46 F
31a6818e
MK
62007 7 07 BEL \(aq\ea\(aq (bell) 107 71 47 G
63010 8 08 BS \(aq\eb\(aq (backspace) 110 72 48 H
64011 9 09 HT \(aq\et\(aq (horizontal tab) 111 73 49 I
65012 10 0A LF \(aq\en\(aq (new line) 112 74 4A J
66013 11 0B VT \(aq\ev\(aq (vertical tab) 113 75 4B K
67014 12 0C FF \(aq\ef\(aq (form feed) 114 76 4C L
68015 13 0D CR \(aq\er\(aq (carriage ret) 115 77 4D M
2ce70b17
MK
69016 14 0E SO (shift out) 116 78 4E N
70017 15 0F SI (shift in) 117 79 4F O
71020 16 10 DLE (data link escape) 120 80 50 P
72021 17 11 DC1 (device control 1) 121 81 51 Q
73022 18 12 DC2 (device control 2) 122 82 52 R
74023 19 13 DC3 (device control 3) 123 83 53 S
75024 20 14 DC4 (device control 4) 124 84 54 T
76025 21 15 NAK (negative ack.) 125 85 55 U
77026 22 16 SYN (synchronous idle) 126 86 56 V
78027 23 17 ETB (end of trans. blk) 127 87 57 W
79030 24 18 CAN (cancel) 130 88 58 X
80031 25 19 EM (end of medium) 131 89 59 Y
81032 26 1A SUB (substitute) 132 90 5A Z
82033 27 1B ESC (escape) 133 91 5B [
31a6818e 83034 28 1C FS (file separator) 134 92 5C \e \(aq\e\e\(aq
2ce70b17
MK
84035 29 1D GS (group separator) 135 93 5D ]
85036 30 1E RS (record separator) 136 94 5E ^
86037 31 1F US (unit separator) 137 95 5F \&_
87040 32 20 SPACE 140 96 60 \`
88041 33 21 ! 141 97 61 a
89042 34 22 " 142 98 62 b
90043 35 23 # 143 99 63 c
91044 36 24 $ 144 100 64 d
92045 37 25 % 145 101 65 e
93046 38 26 & 146 102 66 f
add6b9f6 94047 39 27 \(aq 147 103 67 g
2ce70b17
MK
95050 40 28 ( 150 104 68 h
96051 41 29 ) 151 105 69 i
97052 42 2A * 152 106 6A j
98053 43 2B + 153 107 6B k
99054 44 2C , 154 108 6C l
100055 45 2D \- 155 109 6D m
101056 46 2E . 156 110 6E n
102057 47 2F / 157 111 6F o
103060 48 30 0 160 112 70 p
104061 49 31 1 161 113 71 q
105062 50 32 2 162 114 72 r
106063 51 33 3 163 115 73 s
107064 52 34 4 164 116 74 t
108065 53 35 5 165 117 75 u
109066 54 36 6 166 118 76 v
110067 55 37 7 167 119 77 w
111070 56 38 8 170 120 78 x
112071 57 39 9 171 121 79 y
113072 58 3A : 172 122 7A z
114073 59 3B ; 173 123 7B {
115074 60 3C < 174 124 7C |
116075 61 3D = 175 125 7D }
117076 62 3E > 176 126 7E ~
118077 63 3F ? 177 127 7F DEL
fea681da 119.TE
fea681da
MK
120.if t \{\
121.in
122.ft P
123\}
c0f153c6 124.SS Tables
5ef5222a 125For convenience, below are more compact tables in hex and decimal.
bdd915e2 126.PP
c0f153c6 127.nf
e69aa6c8
KK
128.if t \{\
129.in 1i
130.ft CW
131\}
c0f153c6
MK
132 2 3 4 5 6 7 30 40 50 60 70 80 90 100 110 120
133 ------------- ---------------------------------
185ec3e4 1340: 0 @ P \` p 0: ( 2 < F P Z d n x
c0f153c6 1351: ! 1 A Q a q 1: ) 3 = G Q [ e o y
31a6818e 1362: " 2 B R b r 2: * 4 > H R \e f p z
c0f153c6
MK
1373: # 3 C S c s 3: ! + 5 ? I S ] g q {
1384: $ 4 D T d t 4: " , 6 @ J T ^ h r |
1395: % 5 E U e u 5: # \- 7 A K U _ i s }
185ec3e4 1406: & 6 F V f v 6: $ . 8 B L V \` j t ~
4fe88caf 1417: \(aq 7 G W g w 7: % / 9 C M W a k u DEL
c0f153c6 1428: ( 8 H X h x 8: & 0 : D N X b l v
4fe88caf 1439: ) 9 I Y i y 9: \(aq 1 ; E O Y c m w
c0f153c6
MK
144A: * : J Z j z
145B: + ; K [ k {
31a6818e 146C: , < L \e l |
c0f153c6
MK
147D: \- = M ] m }
148E: . > N ^ n ~
149F: / ? O _ o DEL
e69aa6c8
KK
150.if t \{\
151.in
152.ft P
153\}
c0f153c6 154.fi
889829be
MK
155.SH NOTES
156.SS History
fea681da
MK
157An
158.B ascii
159manual page appeared in Version 7 of AT&T UNIX.
dd3568a1 160.PP
fea681da
MK
161On older terminals, the underscore code is displayed as a left arrow,
162called backarrow, the caret is displayed as an up-arrow and the vertical
163bar has a hole in the middle.
dd3568a1 164.PP
fea681da
MK
165Uppercase and lowercase characters differ by just one bit and the
166ASCII character 2 differs from the double quote by just one bit, too.
167That made it much easier to encode characters mechanically or with a
168non-microcontroller-based electronic keyboard and that pairing was found
169on old teletypes.
dd3568a1 170.PP
fea681da
MK
171The ASCII standard was published by the United States of America
172Standards Institute (USASI) in 1968.
173.\"
174.\" ASA was the American Standards Association and X3 was an ASA sectional
175.\" committee on computers and data processing. Its name changed to
176.\" American National Standards Committee X3 (ANSC-X3) and now it is known
177.\" as Accredited Standards Committee X3 (ASC X3). It is accredited by ANSI
178.\" and administered by ITI. The subcommittee X3.2 worked on coded
179.\" character sets; the task group working on ASCII appears to have been
180.\" designated X3.2.4. In 1966, ASA became the United States of America
181.\" Standards Institute (USASI) and published ASCII in 1968. It became the
182.\" American National Standards Institute (ANSI) in 1969 and is the
24b74457 183.\" U.S. member body of ISO; private and nonprofit.
fea681da 184.\"
47297adb 185.SH SEE ALSO
5ef5222a 186.BR charsets (7),
e37e3282 187.BR iso_8859-1 (7),
9e781349 188.BR iso_8859-10 (7),
5ef5222a 189.BR iso_8859-11 (7),
9e781349
MK
190.BR iso_8859-13 (7),
191.BR iso_8859-14 (7),
e37e3282
MK
192.BR iso_8859-15 (7),
193.BR iso_8859-16 (7),
194.BR iso_8859-2 (7),
9e781349 195.BR iso_8859-3 (7),
a738dbe3 196.BR iso_8859-4 (7),
9e781349 197.BR iso_8859-5 (7),
a738dbe3 198.BR iso_8859-6 (7),
e37e3282 199.BR iso_8859-7 (7),
9e781349 200.BR iso_8859-8 (7),
4d04d4f0
MK
201.BR iso_8859-9 (7),
202.BR utf-8 (7)