Map Development Area (MDA)
Location:
_/_
misc
_/_
encoding
_/_
character-encoding
| character-encoding |
|
|
Types:
|
-
Comment:
-
mostly character sets and encodings were defined at the same time -- but they are two different things
-
example
-
Unicode offers several encoding options
-
examples
-
ISO 8859-1 (west european), ISO 8859-2 (east-european), ... all need one byte
-
Comment:
-
characters are represented by a number -- numbers have to be encoded somehow for binary representation
-
example
-
ASCII encoding: 'A' encoded binary 65, 'B' as binary 66, ..., needs only 7 bits
-
example
-
EUC (Extended Unix Character) is both, encoding and character set
-
Comment:
-
algorithm to map a character set to a byte sequence
-
example
-
EBCDIC encoding: 'A' encoded as 193 in one byte, 'B' as 194 one byte, needs 8 bits
|
|
|