ASCII Chart
-- Dilbert ASCII - The American Standard Code for Information Interchange is a standard seven-bit code that was proposed by ANSI in 1963, and finalized in 1968. Other sources also credit much of the work on ASCII to work done in 1965 by Robert W. Bemer (http://www.bobbemer.com/). ASCII was established to achieve compatibility between various types of data processing equipment. Later-day standards that document ASCII include ISO-14962-1997 and ANSI-X3.4-1986(R1997). ASCII, pronounced "ask-key", is the common code for microcomputer equipment. The standard ASCII character set consists of 128 decimal numbers ranging from zero through 127 assigned to letters, numbers, punctuation marks, and the most common special characters. The Extended ASCII Character Set also consists of 128 decimal numbers and ranges from 128 through 255 representing additional special, mathematical, graphic, and foreign characters. Every now and again, I've wished that I had an ASCII chart handy, so I made one and stuck it on this page so that I could find it in a hurry. One thing led to another, and folks started asking me questions about ASCII and other character representations, so I've tried to update this page a bit to answer some of the most common questions. Also, I've added additional info,such as IBM PC Keyboard Scan Codes, and a list of other references.
My ASCII Chart
0 1 2 3 4 5 6 7 8 9 A B C D E F 0 NUL SOH STX ETX EOT ENQ ACK BEL BS HT LF VT FF CR SO SI 1 DLE DC1 DC2 DC3 DC4 NAK SYN ETB CAN EM SUB ESC FS GS RS US 2 SP ! " # $ % & ' ( ) * + , - . / 3 0 1 2 3 4 5 6 7 8 9 : ; < = > ? 4 @ A B C D E F G H I J K L M N O 5 P Q R S T U V W X Y Z [ \ ] ^ _ 6 ` a b c d e f g h i j k l m n o 7 p q r s t u v w x y z { | } ~ DEL
ASCII Q & AEvery now and then, I get questions about ASCII. Here are a few: Q: What does ASCII stand for? Q: What do CR, LF, SO, and so forth mean? Q: Someone wants me to send my resume (or some other file) to
them in ASCII, so what do I do? Q: OK, fine, but how do I save a Microsoft Word ® document as
plain text?
Q: I'm writing a program that directly interfaces with the
keyboard of an IBM PC, and I need to accept keystrokes for F1, F2, and
other keys. What are the IBM PC keyboard codes for F1, F2, and ALT-A, etc?
Q: What are the ASCII codes for things like the degrees symbol
(°), the trademark symbol, solid blocks and other special symbols?
Q: How do I generate extended ASCII characters from the
keyboard?
Q: Does this work in Windows?
Q: What's the ASCII code for CTRL-ALT-DEL, and how do I put it
in a DOS batch file? Q: What's the ASCII code for CTRL-A, or CTRL-Z?
Control CodesThe following is a more detailed description of the first 32 ASCII characters, often referred to as control codes.NUL (null) SOH (start of heading) STX (start of text) ETX (end of text) EOT (end of transmission) - Not the same as ETB ENQ (enquiry) ACK (acknowledge) BEL (bell) - Caused teletype machines to ring a bell. Causes a beep in many common terminals and terminal emulation programs. BS (backspace) - Moves the cursor (or print head) move backwards (left) one space. TAB (horizontal tab) - Moves the cursor (or print head) right to the next tab stop. The spacing of tab stops is dependent on the output device, but is often either 8 or 10. LF (NL line feed, new line) - Moves the cursor (or print head) to a new line. On Unix systems, moves to a new line AND all the way to the left. VT (vertical tab) FF (form feed) - Advances paper to the top of the next page (if the output device is a printer). CR (carriage return) - Moves the cursor all the way to the left, but does not advance to the next line. SO (shift out) - Switches output device to alternate character set. SI (shift in) - Switches output device back to default character set. DLE (data link escape) DC1 (device control 1) DC2 (device control 2) DC3 (device control 3) DC4 (device control 4) NAK (negative acknowledge) SYN (synchronous idle) ETB (end of transmission block) - Not the same as EOT CAN (cancel) EM (end of medium) SUB (substitute) ESC (escape) FS (file separator) GS (group separator) RS (record separator) US (unit separator)
IBM PC Keyboard Scan CodesFor many of the special key combinations such as ALT-A, F1, PgUp, and so forth, the IBM PC uses a special two-character escape sequence. Depending on the programming language being used and the level at which the keyboard is being accessed, the escape character is either ESC (27, 0x1B), or NUL (0). Here are some common sequences:Char. Decimal Pair Hex Pair Char. Decimal Pair Hex Pair ALT-A (00,30) (0x00,0x1e) ALT-B (00,48) (0x00,0x30) ALT-C (00,46) (0x00,0x2e) ALT-D (00,32) (0x00,0x20) ALT-E (00,18) (0x00,0x12) ALT-F (00,33) (0x00,0x21) ALT-G (00,34) (0x00,0x22) ALT-H (00,35) (0x00,0x23) ALT-I (00,23) (0x00,0x17) ALT-J (00,36) (0x00,0x24) ALT-K (00,37) (0x00,0x25) ALT-L (00,38) (0x00,0x26) ALT-M (00,50) (0x00,0x32) ALT-N (00,49) (0x00,0x31) ALT-O (00,24) (0x00,0x18) ALT-P (00,25) (0x00,0x19) ALT-Q (00,16) (0x00,0x10) ALT-R (00,19) (0x00,0x13) ALT-S (00,31) (0x00,0x1a) ALT-T (00,20) (0x00,0x14) ALT-U (00,22) (0x00,0x16) ALT-V (00,47) (0x00,0x2f) ALT-W (00,17) (0x00,0x11) ALT-X (00,45) (0x00,0x2d) ALT-Y (00,21) (0x00,0x15) ALT-Z (00,44) (0x00,0x2c) PgUp (00,73) (0x00,0x49) PgDn (00,81) (0x00,0x51) Home (00,71) (0x00,0x47) End (00,79) (0x00,0x4f) UpArrw (00,72) (0x00,0x48) DnArrw (00,80) (0x00,0x50) LftArrw (00,75) (0x00,0x4b) RtArrw (00,77) (0x00,0x4d) F1 (00,59) (0x00,0x3b) F2 (00,60) (0x00,0x3c) F3 (00,61) (0x00,0x3d) F4 (00,62) (0x00,0x3e) F5 (00,63) (0x00,0x3f) F6 (00,64) (0x00,0x40) F7 (00,65) (0x00,0x41) F8 (00,66) (0x00,0x42) F9 (00,67) (0x00,0x43) F10 (00,68) (0x00,0x44) F11 (00,133) (0x00,0x85) F12 (00,134) (0x00,0x86) ALT-F1 (00,104) (0x00,0x68) ALT-F2 (00,105) (0x00,0x69) ALT-F3 (00,106) (0x00,0x6a) ALT-F4 (00,107) (0x00,0x6b) ALT-F5 (00,108) (0x00,0x6c) ALT-F6 (00,109) (0x00,0x6d) ALT-F7 (00,110) (0x00,0x6e) ALT-F8 (00,111) (0x00,0x6f) ALT-F9 (00,112) (0x00,0x70) ALT-F10 (00,113) (0x00,0x71) ALT-F11 (00,139) (0x00,0x8b) ALT-F12 (00,140) (0x00,0x8c)
IBM PC Extended ASCII Display CharactersStrictly speaking, the ASCII character set only includes values up to 127 decimal (7F hex). However, when the IBM PC was developed, the video card contained one byte for each character in the 80x25 character display. Gee...what to do with that extra bit per character? Why not invent 128 new characters, for line-drawing and special symbols? The result, of course, was the extended ASCII character set for the IBM PC. The chart below shows (most of) the characters that can be generated by the display in the original IBM PC. Microsoft Windows ® has a different notion about what the high-order (upper 128) characters are, as shown in the table below.
Converting Hex to Decimal
0 1 2 3 4 5 6 7 8 9 A B C D E F. 0 000 001 002 003 004 005 006 007 008 009 010 011 012 013 014 015 1 016 017 018 019 020 021 022 023 024 025 026 027 028 029 030 031 2 032 033 034 035 036 037 038 039 040 041 042 043 044 045 046 047 3 048 049 050 051 052 053 054 055 056 057 058 059 060 061 062 063 4 064 065 066 067 068 069 070 071 072 073 074 075 076 077 078 079 5 080 081 082 083 084 085 086 087 088 089 090 091 092 093 094 095 6 096 097 098 099 100 101 102 103 104 105 106 107 108 109 110 111 7 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 8 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 9 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 A 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 B 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 C 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 D 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 E 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 F 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 Hex 41 (written as 0x41 in the programing language C) is equivalent to decimal 65.
Converting Hex to Octal
0 1 2 3 4 5 6 7 8 9 A B C D E F. 0 000 001 002 003 004 005 006 007 010 011 012 013 014 015 016 017 1 020 021 022 023 024 025 026 027 030 031 032 033 034 035 036 037 2 040 041 042 043 044 045 046 047 050 051 052 053 054 055 056 057 3 060 061 062 063 064 065 066 067 070 071 072 073 074 075 076 077 4 100 101 102 103 104 105 106 107 110 111 112 113 114 115 116 117 5 120 121 122 123 134 125 126 127 130 131 132 133 134 135 136 137 6 140 141 142 143 144 145 146 147 150 151 152 153 154 155 156 157 7 160 161 162 163 164 165 166 167 170 171 172 173 174 175 176 177 8 200 201 202 203 204 205 206 207 210 211 212 213 214 215 216 217 9 220 221 222 223 224 225 226 227 230 231 232 233 234 235 236 237 A 240 241 242 243 244 245 246 247 250 251 252 253 254 255 256 257 B 260 261 262 263 264 265 266 267 270 271 272 273 274 275 276 277 C 300 301 302 303 304 305 306 307 310 311 312 313 314 315 316 317 D 320 321 322 323 324 325 326 327 330 331 332 333 334 335 336 337 E 340 341 342 343 344 345 346 347 350 351 352 353 354 355 356 357 F 360 361 362 363 364 365 366 367 370 371 372 373 374 375 376 377 Hex 41 (written as 0x41 in the programing language C) is equivalent to octal 101. Other ASCII ChartsHere are some other folks' ASCII charts, and other interesting ASCII-related references.
Other Things You May Want to Know
This page and its contents, copyright © 1996-2001, JimPrice.Com. Here's a link to our privacy statement. If you have any questions about this page, please e-mail me at: jim@jimprice.com. This page last updated 1/7/2001. |