ShiftJIS::X0213::MapUTF version 0.02
================

NAME

ShiftJIS::X0213::MapUTF - conversion between Shift_JISX0213 and Unicode

SYNOPSIS

    use ShiftJIS::X0213::MapUTF;

    $unicode_string  = sjis0213_to_unicode($sjis0213_string);
    $sjis0213_string = unicode_to_sjis0213($unicode_string);

DESCRIPTION

This module provides the following functions:

    sjis0213_to_unicode() converts Shift_JISX0213 to Unicode of Perl.
    sjis0213_to_utf16be() converts Shift_JISX0213 to UTF-16BE (big endian).
    sjis0213_to_utf16le() converts Shift_JISX0213 to UTF-16LE (little endian).
    unicode_to_sjis0213() converts Unicode  to Shift_JISX0213.
    utf16be_to_sjis0213() converts UTF-16BE to Shift_JISX0213.
    utf16le_to_sjis0213() converts UTF-16LE to Shift_JISX0213.

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

    Tomoyuki SADAHIRO

        bqw10602@nifty.com
        http://homepage1.nifty.com/nomenclator/perl/

    Copyright(C) 2002-2002, 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

* JIS X 0213:2000: 7-bit and 8-bit double byte coded extended KANJI sets
    for information interchange, by JIS Committee.

* Shibano, JIS KANJI JITEN (ISBN4-542-20129-5), revised,
    Japanese Standards Association (JSA), 2002, Tokyo.

* http://www.unicode.org/Public/UNIDATA/Unihan.txt, by Unicode Consortium.

