Computer Science GCES EDEXCEL
-
Decomposition And Abstraction Edexcel2 主题
-
Algorithms Edexcel11 主题
-
Follow And Write Algorithms Edexcel
-
Introduction To Programming Concepts Edexcel
-
Basic Programming Concepts Edexcel
-
Variables Constants And Assignments Edexcel
-
Data Structures And Arrays Edexcel
-
Arithmetic Relational And Logical Operations Edexcel
-
Determine Outputs Of An Algorithm Edexcel
-
Types Of Errors Edexcel
-
Standard Sorting Algorithms Edexcel
-
Standard Searching Algorithms Edexcel
-
Algorithm Efficiency Edexcel
-
Follow And Write Algorithms Edexcel
-
Truth Tables Edexcel3 主题
-
Binary Edexcel6 主题
-
Data Representation Edexcel4 主题
-
Data Storage And Compression Edexcel2 主题
-
Hardware Edexcel5 主题
-
Software Edexcel3 主题
-
Programming Languages Edexcel2 主题
-
Networks Edexcel7 主题
-
Network Security Edexcel2 主题
-
Environmental Issues Edexcel1 主题
-
Ethical And Legal Issues Edexcel3 主题
-
Cybersecurity Edexcel2 主题
-
Develop Code Edexcel6 主题
-
Constructs Edexcel4 主题
-
Data Types And Data Structures Edexcel5 主题
-
Operators Edexcel1 主题
-
Subprograms Edexcel2 主题
Representing Characters Edexcel
Exam code:1CP2
7-Bit ASCII
What is a character set?
-
A character set is a defined list of characters that can be understood by a computer
-
Each character is given a unique binary code
-
Character sets are ordered logically, the code for ‘B’ is one more than the code for ‘A’
-
A character set provides a standard for computers to communicate and send/receive information
-
Without a character set, one system might interpret 01000001 differently from another
-
The number of characters that can be represented is determined by the number of bits used by the character set
-
Two common character sets are:
-
American Standard Code for Information Interchange (ASCII)
-
Universal Character Encoding (UNICODE)
-
What is ASCII?
-
ASCII is a character set and was an accepted standard for information interchange
-
ASCII uses 7 bits, providing 27 unique codes (128) or a maximum of 128 characters it can represent

-
ASCII only represents basic characters needed for English, limiting its use for other languages
Limitations of ASCII
-
ASCII has a limited number of characters which means it can only represent the English alphabet, numbers and some special characters
-
A, B, C, ………, Z
-
a, b, c ,………….,z
-
0, 1, 2,…….., 9
-
!, @, #, …..
-
-
ASCII cannot represent characters from languages other than English
-
ASCII does not include modern symbols or emojis common in today’s digital communication
What is UNICODE?
-
UNICODE is a character set and was created as a solution to the limitations of ASCII
-
UNICODE uses a minimum of 16 bits, providing 216 unique codes (65,536) or a minimum of 65,536 characters it can represent
-
UNICODE can represent characters from all the major languages around the world
Worked Example
The computer stores text using the ASCII character set.
Part of the ASCII character set is shown:
|
Character |
ASCII Denary Code |
|
E |
69 |
|
F |
70 |
|
G |
71 |
|
H |
72 |
Identify the character that will be represented by the ASCII denary code 76 [1]
L (must be a capital)
Identify a second character set [1]
UNICODE
Responses