Update Changes.
[p5sagit/p5-mst-13.2.git] / ext / Encode / KR / KR.pm
CommitLineData
0e567a6c 1package Encode::KR;
071db25d 2BEGIN {
3 if (ord("A") == 193) {
4 die "Encode::KR not supported on EBCDIC\n";
5 }
6}
0ab8f81e 7our $VERSION = do { my @r = (q$Revision: 1.22 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r };
c0d88b76 8
9use Encode;
0e567a6c 10use XSLoader;
b2704119 11XSLoader::load(__PACKAGE__,$VERSION);
0e567a6c 12
0ab8f81e 13use Encode::KR::2022_KR;
14
0e567a6c 151;
16__END__
b2704119 17
b2729934 18=head1 NAME
0e567a6c 19
b2729934 20Encode::KR - Korean Encodings
0e567a6c 21
b2729934 22=head1 SYNOPSIS
23
1b2c56c8 24 use Encode qw/encode decode/;
2b217bf7 25 $euc_kr = encode("euc-kr", $utf8); # loads Encode::KR implicitly
ee981de6 26 $utf8 = decode("euc-kr", $euc_kr); # ditto
b2729934 27
28=head1 DESCRIPTION
29
30This module implements Korean charset encodings. Encodings supported
31are as follows.
32
fab31126 33
34 Canonical Alias Description
35 --------------------------------------------------------------------
67d7b5ef 36 euc-kr /\beuc.*kr$/i EUC (Extended Unix Character)
37 /\bkr.*euc$/i
a999c27c 38 ksc5601-raw Korean standard code set (as is)
39 cp949 /(?:x-)?uhc$/i
40 /(?:x-)?windows-949$/i
41 /\bks_c_5601-1987$/i
42 Code Page 949 (EUC-KR + 8,822
67d7b5ef 43 (additional Hangul syllables)
a999c27c 44 MacKorean EUC-KR + Apple Vendor Mappings
67d7b5ef 45 johab JOHAB A supplementary encoding defined in
a999c27c 46 Annex 3 of KS X 1001:1998
67d7b5ef 47 iso-2022-kr iso-2022-kr [RFC1557]
5129552c 48 --------------------------------------------------------------------
b2729934 49
50To find how to use this module in detail, see L<Encode>.
51
52=head1 BUGS
53
67d7b5ef 54When you see C<charset=ks_c_5601-1987> on mails and web pages, they really
55mean "cp949" encodings. To fix that, the following aliases are set;
56
57 qr/(?:x-)?uhc$/i => '"cp949"'
58 qr/(?:x-)?windows-949$/i => '"cp949"'
59 qr/ks_c_5601-1987$/i => '"cp949"'
b2729934 60
0ab8f81e 61The ASCII region (0x00-0x7f) is preserved for all encodings, even
62though this conflicts with mappings by the Unicode Consortium. See
b2729934 63
a63c962f 64L<http://www.debian.or.jp/~kubota/unicode-symbols.html.en>
b2729934 65
0ab8f81e 66to find out why it is implemented that way.
b2729934 67
68=head1 SEE ALSO
69
70L<Encode>
71
72=cut