This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
More Han tweaks from Autrjius Tang: most importantly,
[perl5.git] / ext / Encode / KR / KR.pm
CommitLineData
0e567a6c
JH
1package Encode::KR;
2use Encode;
3our $VERSION = '0.02';
4use XSLoader;
5XSLoader::load('Encode::KR',$VERSION);
6
71;
8__END__
b2729934 9=head1 NAME
0e567a6c 10
b2729934 11Encode::KR - Korean Encodings
0e567a6c 12
b2729934
JH
13=head1 SYNOPSIS
14
15 use Encode::CN;
16 $euc_kr = encode("euc-kr", $utf8);
17 $utf8 = encode("euc-kr", $euc_kr);
18
19=head1 DESCRIPTION
20
21This module implements Korean charset encodings. Encodings supported
22are as follows.
23
24 euc-kr EUC (Extended Unix Character)
25 ksc5601 Korean standard code set
26 cp949 Code Page 949 (EUC-KR + Unified Hangul Code)
27
28To find how to use this module in detail, see L<Encode>.
29
30=head1 BUGS
31
32The C<Johab> (two-byte combination code) encoding is not supported.
33
34ASCII part (0x00-0x7f) is preserved for all encodings, even though it
35conflicts with mappings by the Unicode Consortium. See
36
37F<http://www.debian.or.jp/~kubota/unicode-symbols.html.en>
38
39to find why it is implemented that way.
40
41=head1 SEE ALSO
42
43L<Encode>
44
45=cut