"The last pieces of Chinese puzzle" from Autrijus.
[p5sagit/p5-mst-13.2.git] / ext / Encode / TW / TW.pm
CommitLineData
0e567a6c 1package Encode::TW;
0e567a6c 2our $VERSION = '0.02';
c0d88b76 3
4use Encode;
0e567a6c 5use XSLoader;
6XSLoader::load('Encode::TW',$VERSION);
7
c0d88b76 8local $@;
9eval "use Encode::HanExtra"; # load extra encodings if they exist
10
0e567a6c 111;
12__END__
b2729934 13=head1 NAME
14
15Encode::TW - Taiwan-based Chinese Encodings
16
17=head1 SYNOPSIS
18
19 use Encode::CN;
20 $big5 = encode("big5", $utf8);
21 $utf8 = encode("big5", $big5);
22
23=head1 DESCRIPTION
24
25This module implements Taiwan-based Chinese charset encodings.
26Encodings supported are as follows.
27
28 big5 The original Big5 encoding
29 big5-hkscs Big5 plus Cantonese characters in Hong Kong
c0d88b76 30 cp950 Code Page 950 (Big5 + Microsoft vendor mappings)
b2729934 31
32To find how to use this module in detail, see L<Encode>.
33
34=head1 NOTES
35
36Due to size concerns, C<EUC-TW> (Extended Unix Character) and C<BIG5PLUS>
37(CMEX's Big5+) are distributed separately on CPAN, under the name
38L<Encode::HanExtra>. That module also contains extra China-based encodings.
39
c0d88b76 40This module will automatically load L<Encode::HanExtra> if you have it on
41your machine.
42
b2729934 43=head1 BUGS
44
45The C<CNS11643> encoding files are not complete (only the first two planes,
46C<11643-1> and C<11643-2>, exist in the distribution). For common CNS11643
47manipulation, please use C<EUC-TW> in L<Encode::HanExtra>, which contains
48plane 1-7.
49
50ASCII part (0x00-0x7f) is preserved for all encodings, even though it
51conflicts with mappings by the Unicode Consortium. See
52
53F<http://www.debian.or.jp/~kubota/unicode-symbols.html.en>
54
55to find why it is implemented that way.
56
57=head1 SEE ALSO
58
59L<Encode>
60
61=cut