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