122k views
3 votes
What is the difference between unicode and ascii?

User Jaxon
by
8.3k points

2 Answers

6 votes
What Bobby said is correct. ASCII (American Standard Code for Information Interchange) was originally a 7-bit code for American computers. Later it was extended to 8-bit and called Extended ASCII. As computers spread to countries that didn't use English, UTF (Universal Type Format) was standardized to handle all language characters. UTF-8 and Extended ASCII are virtually identical. UTF-16 is worldwide.
User Jmbarbier
by
8.5k points
1 vote
Unicode is a superset of ASCII, and the numbers 0–128 have the same meaning in ASCII as they have in Unicode.ASCII has 128 code points, 0 through 127. It can fit in a single 8-bit byte, the values 128 through 255 tended to be used for other characters.
User Sum
by
7.5k points