Zusammenfassung der Ressource
Encoding Schemes & Number System
- ASCII
- Represents 7 bit character means 128
- Encodes set of English language only
- ASCII value of 0 to 9
- 48 to 56 respectively
- ASCII Value of
- A to Z is
- 65 to 90
- a to z is
- 97 to 122
- ISCII
- Represents 8 bit character means 256
- Unicode
- Decimal
- Base 10
- Numbers used 0 to 9
- E.g. 123,999
- Octal
- Base 8
- Numbers used 0 to7
- E.g. 127,7.34
- Binary
- Base 2
- Numbers used 0 & 1
- E.g 101,11
- Hexadecimal
- Numbers used 0 to 9 10=A,
11=B , 12=C, 13=D,14=E,15=F
- Base 16
- E.g. DB5,189