miSim DE Back Index Blank

Appendix C

Ascii Character Values

Processors are able to handle different types of data by treating that data as numbers. When storing text, we assign a standard set of numbers to represent each character. The 'Ascii' (American Standard Code of Information Interchange) character values are as follows (in hexadecimal):

 0123456789ABCDEF
2 !"#$%&`()*+,-./
30123456789:;<=>?
4@ABCDEFGHIJKLMNO
5PQRSTUVWXYZ[\]^_
6'abcdefghijklmno
7pqrstuvwxyz{|}~ 

From the table above you can read the character at 20 hex (32 decimal) is the character. 'A' has a hex value of 41 - or 65 decimal, and 'a' has a value of 61 - or 97 decimal.

Index Blank