diff options
| author | Mattias Andrée <m@maandree.se> | 2025-02-23 15:48:02 +0100 |
|---|---|---|
| committer | Mattias Andrée <m@maandree.se> | 2025-02-23 15:48:02 +0100 |
| commit | 120d0259be2e9796757572ea5b7e43ef5715402e (patch) | |
| tree | 80a8c2af9e01c5702d6a6c3ed747bbad16467104 /maps/utf-1 | |
| parent | First commit (diff) | |
| download | libcharsets-120d0259be2e9796757572ea5b7e43ef5715402e.tar.gz libcharsets-120d0259be2e9796757572ea5b7e43ef5715402e.tar.bz2 libcharsets-120d0259be2e9796757572ea5b7e43ef5715402e.tar.xz | |
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to '')
| -rw-r--r-- | maps/utf-1 | 35 | ||||
| -rw-r--r-- | maps/utf-16-be | 4 | ||||
| -rw-r--r-- | maps/utf-16-le | 4 |
3 files changed, 43 insertions, 0 deletions
diff --git a/maps/utf-1 b/maps/utf-1 new file mode 100644 index 0000000..f81a7b6 --- /dev/null +++ b/maps/utf-1 @@ -0,0 +1,35 @@ +map 0x00-0x9F to U+0000 + +map 0xA0,\ + 0xA0-0xFF to U+00A0 + +map 0xA1-0xF5,\ + 0x21-0x7E+0xA0-0xFF to U+0100 using big-endian + +map 0xF6-0xFB,\ + 0x21-0x7E+0xA0-0xFF,\ + 0x21-0x7E+0xA0-0xFF to U+4016 using big-endian + +map 0xFC,\ + 0x21-0x7E+0xA0-0xFF,\ + 0x21-0x7E+0xA0-0xFF,\ + 0x21-0x7E+0xA0-0xFF,\ + 0x21-0x7E+0xA0-0xFF to U+00038E2E using big-endian + +map 0xFD,\ + 0x21-0x7E+0xA0-0xBC,\ + 0x21-0x7E+0xA0-0xFF,\ + 0x21-0x7E+0xA0-0xFF,\ + 0x21-0x7E+0xA0-0xFF to U+4DB0F63E using big-endian + +map 0xFD, 0xBC,\ + 0x21-0x2A,\ + 0x21-0x7E+0xA0-0xFF,\ + 0x21-0x7E+0xA0-0xFF to U+7FFA2566 using big-endian + +map 0xFD, 0xBC, 0x2B,\ + 0x21-0x7E+0xA0-0xB8,\ + 0x21-0x7E+0xA0-0xFF to U+7FFFA78E using big-endian + +map 0xFD, 0xBC, 0x2B, 0xB9,\ + 0x21-0x40 to U+7FFFFFE0 diff --git a/maps/utf-16-be b/maps/utf-16-be new file mode 100644 index 0000000..7199108 --- /dev/null +++ b/maps/utf-16-be @@ -0,0 +1,4 @@ +map 0x00-0xD7, 0x00-0xFF to U+0000 using big-endian +map 0xE0-0xFF, 0x00-0xFF to U+E000 using big-endian +map 0xD8-0xDB, 0x00-0xFF,\ + 0xDC-0xDF, 0x00-0xFF to U+010000 using big-endian diff --git a/maps/utf-16-le b/maps/utf-16-le new file mode 100644 index 0000000..0985f1f --- /dev/null +++ b/maps/utf-16-le @@ -0,0 +1,4 @@ +map 0x00-0xFF, 0x00-0xD7 to U+0000 using little-endian +map 0x00-0xFF, 0xE0-0xFF to U+E000 using little-endian +map 0x00-0xFF <<< 2, 0xD8-0xDB <<< 3,\ + 0x00-0xFF <<< 0, 0xDC-0xDF <<< 1 to U+010000 |
