DESCR 1.0 KB

123456789101112131415161718192021
  1. This module converts strings from and to 2-byte Unicode UCS2 format.
  2. All mappings happen via 2 byte UTF16 encodings, not via 1 byte UTF8
  3. encoding. To transform these use Unicode::String.
  4. For historical reasons this module coexists with Unicode::Map8. Please
  5. use Unicode::Map8 unless you need to care for two byte character sets,
  6. e.g. chinese GB2312. Anyway, if you stick to the basic functionality
  7. (see documentation) you can use both modules equivalently.
  8. Practically this module will disappear from earth sooner or later as
  9. Unicode mapping support needs somehow to get into perl's core. If you
  10. like to work on this field please don't hesitate contacting Gisle Aas!
  11. This module can't deal directly with utf8. Use Unicode::String to
  12. convert utf8 to utf16 and vice versa.
  13. Character mapping is according to the data of binary mapfiles in
  14. Unicode::Map hierarchy. Binary mapfiles can also be created with this
  15. module, enabling you to install own specific character sets. Refer to
  16. mkmapfile or file REGISTRY in the Unicode::Map hierarchy.