Ascii VS Unicode
Ascii VS Unicode
As computers can understand only numeric how do we make them understand letters and
alphabets?
• The solution is for English characters and other characters. We de ne some codes.
• For English letter and other characters there are some codes. And those codes are called as
ASCII codes.
• ASCII- American standard code for information interchange so, for every letter there is a code
available.
• When we say a character A so, the number 65 will not appear on the screen it will appear as A
only.
A->65
Z->90
a->97
Z->122
fi
ASCII code are available for English uppercase alphabets lower case alphabets and digits as well
as the special case characters and also the control characters that are available on the keyboard
When we convert into binary form. The binary digits will be 7 not more than 7
If we take 65
1000001
1 byte= 8 bits
Enough to store ASCII Code
s="A"
ord(s)
65
ASCII code is a universal code which every machine follows in the universe.