Rats' nest.
[p5sagit/p5-mst-13.2.git] / ext / Encode / KR / KR.pm
CommitLineData
0e567a6c 1package Encode::KR;
fab31126 2our $VERSION = do { my @r = (q$Revision: 0.93 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r };
c0d88b76 3
4use Encode;
0e567a6c 5use XSLoader;
6XSLoader::load('Encode::KR',$VERSION);
7
fab31126 8Encode::define_alias( qr/euc.*kr$/i => '"euc-kr"' );
9Encode::define_alias( qr/kr.*euc/i => '"euc-kr"' );
10
0e567a6c 111;
12__END__
b2729934 13=head1 NAME
0e567a6c 14
b2729934 15Encode::KR - Korean Encodings
0e567a6c 16
b2729934 17=head1 SYNOPSIS
18
2b217bf7 19 use Encode 'encode';
20 $euc_kr = encode("euc-kr", $utf8); # loads Encode::KR implicitly
ee981de6 21 $utf8 = decode("euc-kr", $euc_kr); # ditto
b2729934 22
23=head1 DESCRIPTION
24
25This module implements Korean charset encodings. Encodings supported
26are as follows.
27
fab31126 28
29 Canonical Alias Description
30 --------------------------------------------------------------------
31 euc-kr /euc.*kr$/i EUC (Extended Unix Character)
32 /kr.*euc/i
33 ksc5601 Korean standard code set
34 cp949 Code Page 949
35 (EUC-KR + Unified Hangul Code)
b2729934 36
37To find how to use this module in detail, see L<Encode>.
38
39=head1 BUGS
40
41The C<Johab> (two-byte combination code) encoding is not supported.
42
43ASCII part (0x00-0x7f) is preserved for all encodings, even though it
44conflicts with mappings by the Unicode Consortium. See
45
46F<http://www.debian.or.jp/~kubota/unicode-symbols.html.en>
47
48to find why it is implemented that way.
49
50=head1 SEE ALSO
51
52L<Encode>
53
54=cut