ASCII

From TRCCompSci - AQA Computer Science
Jump to: navigation, search

Overview

CraigNDave

https://www.youtube.com/watch?v=Eex82ogB8n8&index=1&list=PLCiOXwirraUBIKvhutnNnMkVTpQ_psPN2

Computer Science Tutor

https://www.youtube.com/watch?v=tdmeXcDX-Uc&list=PL04uZ7242_M6O_6ITD6ncf7EonVHyBeCm&index=6

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 (American Standard Code for Information Interchange). 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

If you want to shift between the upper and lower case version of a character, you can add/minus 32 to the denary equivalent. E.g to change A to a, you would add 32 to 65, which would result in 97, and vice versa.

All of the ASCII codes can be found [here].

ASCII.jpg

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:

Extended ASCII.gif

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.

Unicode also added emoji compatibility, so now all emojis can be used as a unicode character. There are currently 2623 emojis contained within Unicode.

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.

All of the Unicode characters can be found [here].

Unicode Table.jpg

Trivia

In many programming languages there are methods built in which are able to convert integers to ASCII characters and vice versa. Below are examples for Lua and C#. (Note: C# actually converts to Unicode, but from characters 0-255 this is identical to ASCII.)

Lua

 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

C#

 1 // Code to convert from an integer to an ASCII character.
 2 int input = 65;
 3 char output = Convert.ToChar(input);
 4 Console.WriteLine("The integer " + input + " converts to the ASCII character " + output);
 5 
 6 // Code to convert from an ASCII character to an integer.
 7 char input1 = Convert.ToChar("A");
 8 int output1 = Convert.ToInt16(input1);
 9 Console.WriteLine("The ASCII character " + input1 + " converts to the integer " + output1);
10 
11 Console.ReadLine();
12 
13 /* Result:
14 The integer 65 converts to the ASCII character A
15 The ASCII character A converts to the integer 65
16 */

Revision Questions

Don't forget, uppercase and lowercase have different values.

1. What is the total number of characters in the ASCII Table?

127
The original ASCII table was from 7 bits but after they changed it to 8 the total possible number of characters increased to 256
256
95
22

2. ASCII is the abbreviation of:

American Standard Code for Information Interchange
Australian Standard Code for Information Exchange
ASCII was invented in America not Australia, and the last word in ASCII is Interchange not Exchange
American Standard Code for Information Exchange
The last word in ASCII is Interchange not Exchange
Australian Standard Code for Information Interchange
ASCII was invented in America not Australia.

3. R has an ASCII value of 82 in denary. What is the ASCII value of W in denary?

→ W comes 5 positions later in the alphabet than R, so 82 + 5 = 87

4. s has an ASCII value of 115 in denary. What is the ASCII value of k in denary?

→ k comes 8 positions earlier in the alphabet than s, so 115 - 8 = 107

5. Q has an ASCII value of 81 in denary. What is the ASCII value of Z in denary?

→ Z comes 9 positions later in the alphabet than Q, so 81 + 9 = 90

6. What is the ASCII character equivalent to the hexadecimal value 4A? (Case Sensitive)

→ 4 = 0100 and A = 10 = 1010, so 4A = 01001010 = 74, and 74 = J. (Look here for more on conversions.)

7. What is the ASCII character equivalent to the hexadecimal value 7B?


8. What is the shift in denary value between the upper and lower case ASCII character (E.g. A to a)?


9. True or False: Unicode supports more characters than ASCII

True
False

Your score is 0 / 0