Unicode::Transform version 0.23
================

NAME

Unicode::Transform - conversion among some UTF's

SYNOPSIS

    use Unicode::Transform;

    $unicode_string = utf16be_to_unicode($utf16be_string);
    $utf16le_string = unicode_to_utf16le($unicode_string);

DESCRIPTION

This module provides the following functions:

    utf16be_to_unicode() converts UTF-16BE to Unicode of Perl.
    utf16le_to_unicode() converts UTF-16LE to Unicode.
    unicode_to_utf16be() converts Unicode to UTF-16BE.
    unicode_to_utf16le() converts Unicode to UTF-16LE.

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, <SADAHIRO@cpan.org>

        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<perlunicode>
