Difference between revisions of "ASCII"
Ianjohnson (talk | contribs) (→Extended ASCII) |
Ianjohnson (talk | contribs) (→Revision Questions) |
||
Line 49: | Line 49: | ||
- 95 | - 95 | ||
− | -22 | + | - 22 |
{'''ASCII is the abbreviation of:''' | {'''ASCII is the abbreviation of:''' | ||
Line 75: | Line 75: | ||
{'''True or False Unicode supports more characters than ASCII''' | {'''True or False Unicode supports more characters than ASCII''' | ||
|type="()"} | |type="()"} | ||
− | + | + | + True |
− | - | + | - False |
</quiz> | </quiz> |
Revision as of 10:12, 14 November 2017
Definition
ASCII stands for American Standard Code for Information Interchange. It is a character system that lets computers and devices to process letters, numbers and characters. It is represented by a 7-bit binary number that is either 0's or 1's. HTML (HyperText Markup Language) are based on ASCII. There are 128 characters that can be represented using ASCII.
Below is a table showing all of the characters that can be represented using ASCII
Extended ASCII
This used an additional bit (ie 8 bits) to allow for additional characters. Overall extended ASCII supports the original ASCII values but adds the following:
Unicode
Unicode is different coding system and is becoming more common. It is a 16-bit code, giving enough combinations to store every character in every alphabet (e.g. Urdu, Chinese) plus a vast range of other characters, control and communication codes.
The 16-bit code can represent 65536 different characters.
It maintains compatibility with ASCII by using the same code values as ASCII (ie codes 0-255 are the same as the ASCII table). So if you take ‘z’ and its ASCII value 122 (0111 1010 in binary), the unicode value is still 122 the binary will be 0000 0000 0111 1010.
Trivia
In many programming languages there are ways to be able to find out the ASCII code of a character and vice versa without having to do any visible work
1 local function convertToASCII(str)
2 return str:byte()
3 end
4
5 local function convertFromASCII(num)
6 return num:char()
7 end
8
9 print(convertToASCII("s")) -- > 115
10 print(convertFromASCII(115)) -- > s
Revision Questions
Make sure to watch out for caps, they have different values.