0% found this document useful (0 votes)
99 views

Ascii Code

This document contains: 1) An ASCII code table showing the character codes and their corresponding decimal and binary values. 2) An explanation that the ASCII code of a character is found by combining the 3-bit column number and 4-bit row number from the table. 3) An example of looking up the ASCII code for the character "n" using the table.

Uploaded by

Lello Flo
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
99 views

Ascii Code

This document contains: 1) An ASCII code table showing the character codes and their corresponding decimal and binary values. 2) An explanation that the ASCII code of a character is found by combining the 3-bit column number and 4-bit row number from the table. 3) An example of looking up the ASCII code for the character "n" using the table.

Uploaded by

Lello Flo
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

Microprocessor Systems 1 (3D1)

CS3D11 ASCII Code Table, Page 1 of1

ASCII Code
Column Number
000 001 010 011 100 101 110 111

Row Number
0000 0001 0010 0011 0100 0101 0110 0111 1000 1001 1010 1011 1100 1101 1110 1111 NUL SOH STX ETX EOT ENQ ACK BELL BS HT LF VT FF CR SO SI DLE DC1 DC2 DC3 DC4 NAK SYN ETB CAN EM SUB ESC FS GS RS US

0 1 2 3 4 5 6 7 8 9

@ A B C D E F G H I J K L M N O

P Q R S T U V W X Y Z [ \ ]

`
a b c d e f g h i j k l m n o

p q r s t u v w x y z {

"
# $ % & ' ( )

* +
,

:
;

.
/

< = >
?

|
}

^ _

~
DEL

The ASCII code of a character is found by combining its Column Number (given in 3-bit binary) with its Row Number (given in 4-bit binary). The Column Number forms bits 6, 5 and 4 of the ASCII, and the Row Number forms bits 3, 2, 1 and 0 of the ASCII. Example of use: to get ASCII code for letter "n", locate it in Column 110, Row 1110. Hence its ASCII code is 1101110. The Control Code mnemonics are given in italics above; e.g. CR for Carriage Return, LF for Line Feed, BELL for the Bell, DEL for Delete. The Space is ASCII 0100000, and is shown as here.

You might also like