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