Unicode::Transform version 0.32 ================ NAME Unicode::Transform - conversion among some Unicode transformation formats SYNOPSIS use Unicode::Transform qw(:conv); $unicode_string = utf16be_to_unicode($utf16be_string); $utf16le_string = unicode_to_utf16le($unicode_string); $utf8_string = utf32be_to_utf8 ($utf32be_string); DESCRIPTION This module supports the following UTF: unicode (for Perl's internal strings; see perlunicode) utf16le (for UTF-16LE) utf16be (for UTF-16BE) utf32le (for UTF-32LE) utf32be (for UTF-32BE) utf8 (for UTF-8) utf8mod (for UTF-8-Mod) utfcp1047 (for CP-1047-oriented UTF-EBCDIC). where hyphen-removed and lowercased names are used as a part of a function name (like _to_). INSTALLATION You need a C compiler to build this module. To install this module type the following: perl Makefile.PL make make test make install DEPENDENCIES Perl 5.6.1 or later COPYRIGHT AND LICENCE SADAHIRO Tomoyuki http://homepage1.nifty.com/nomenclator/perl/ Copyright(C) 2002-2003, SADAHIRO Tomoyuki. Japan. All rights reserved. This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. SEE ALSO L