0% found this document useful (0 votes)
94 views1 page

ASCII Code PDF

The document contains an ASCII code table that shows the binary row and column numbers for each character code. It explains that the ASCII code for a character is found by combining its 3-bit column number and 4-bit row number. For example, the letter "n" is in column 110 and row 1110, so its ASCII code is 1101110. It also lists some common control code mnemonics like CR, LF, and BELL.

Uploaded by

M Taufiq Hidayat
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
94 views1 page

ASCII Code PDF

The document contains an ASCII code table that shows the binary row and column numbers for each character code. It explains that the ASCII code for a character is found by combining its 3-bit column number and 4-bit row number. For example, the letter "n" is in column 110 and row 1110, so its ASCII code is 1101110. It also lists some common control code mnemonics like CR, LF, and BELL.

Uploaded by

M Taufiq Hidayat
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
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 NUL DLE ◊ 0 @ P ` p
0001 SOH DC1 ! 1 A Q a q
0010 STX DC2 " 2 B R b r
0011 ETX DC3 # 3 C S c s
0100 EOT DC4 $ 4 D T d t
0101 ENQ NAK % 5 E U e u
0110 ACK SYN & 6 F V f v
0111 BELL ETB ' 7 G W g w
1000 BS CAN ( 8 H X h x
1001 HT EM ) 9 I Y i y
1010 LF SUB * : J Z j z
1011 VT ESC + ; K [ k {
1100 FF FS , < L \ l |
1101 CR GS - = M ] m }
1110 SO RS . > N ^ n ~
1111 SI US / ? O _ o 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