Known test failures updates.
[p5sagit/p5-mst-13.2.git] / ext / Encode / CN / CN.pm
CommitLineData
0e567a6c 1package Encode::CN;
2use Encode;
3our $VERSION = '0.02';
4use XSLoader;
5XSLoader::load('Encode::CN',$VERSION);
6
71;
8__END__
b2729934 9=head1 NAME
10
11Encode::CN - China-based Chinese Encodings
12
13=head1 SYNOPSIS
14
15 use Encode::CN;
16 $euc_cn = encode("euc-cn", $utf8);
17 $utf8 = encode("euc-cn", $euc_cn);
18
19=head1 DESCRIPTION
20
21This module implements China-based Chinese charset encodings.
22Encodings supported are as follows.
23
24 euc-cn EUC (Extended Unix Character)
25 gb2312 The raw (low-bit) GB2312 character map
26 gb12345 Traditional chinese counterpart to GB2312 (raw)
27 iso-ir-165 GB2312 + GB6345 + GB8565 + additions
28 cp936 Code Page 936, also known as GBK (Extended GuoBiao)
29
30To find how to use this module in detail, see L<Encode>.
31
32=head1 NOTES
33
34Due to size concerns, C<GB 18030> (an extension to C<GBK>) is distributed
35separately on CPAN, under the name L<Encode::HanExtra>. That module
36also contains extra Taiwan-based encodings.
37
38=head1 BUGS
39
40The C<HZ> (Hanzi) escaped encoding is not supported.
41
42ASCII part (0x00-0x7f) is preserved for all encodings, even though it
43conflicts with mappings by the Unicode Consortium. See
44
45F<http://www.debian.or.jp/~kubota/unicode-symbols.html.en>
46
47to find why it is implemented that way.
48
49=head1 SEE ALSO
50
51L<Encode>
52
53=cut