4 die "Encode::KR not supported on EBCDIC\n";
7 our $VERSION = do { my @r = (q$Revision: 0.97 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r };
11 XSLoader::load('Encode::KR',$VERSION);
17 Encode::KR - Korean Encodings
21 use Encode qw/encode decode/;
22 $euc_kr = encode("euc-kr", $utf8); # loads Encode::KR implicitly
23 $utf8 = decode("euc-kr", $euc_kr); # ditto
27 This module implements Korean charset encodings. Encodings supported
31 Canonical Alias Description
32 --------------------------------------------------------------------
33 euc-kr /euc.*kr$/i EUC (Extended Unix Character)
35 ksc5601 Korean standard code set
37 (EUC-KR + Unified Hangul Code)
38 --------------------------------------------------------------------
40 To find how to use this module in detail, see L<Encode>.
44 The C<Johab> (two-byte combination code) encoding is not supported.
46 ASCII part (0x00-0x7f) is preserved for all encodings, even though it
47 conflicts with mappings by the Unicode Consortium. See
49 F<http://www.debian.or.jp/~kubota/unicode-symbols.html.en>
51 to find why it is implemented that way.