More Han tweaks from Autrjius Tang: most importantly,
[p5sagit/p5-mst-13.2.git] / ext / Encode / KR / KR.pm
1 package Encode::KR;
2 use Encode;
3 our $VERSION = '0.02';
4 use XSLoader;
5 XSLoader::load('Encode::KR',$VERSION);
6
7 1;
8 __END__
9 =head1 NAME
10
11 Encode::KR - Korean Encodings
12
13 =head1 SYNOPSIS
14
15     use Encode::CN;
16     $euc_kr = encode("euc-kr", $utf8);
17     $utf8   = encode("euc-kr", $euc_kr);
18
19 =head1 DESCRIPTION
20
21 This module implements Korean charset encodings.  Encodings supported
22 are as follows.
23
24   euc-kr        EUC (Extended Unix Character)
25   ksc5601       Korean standard code set
26   cp949 Code Page 949 (EUC-KR + Unified Hangul Code)
27   
28 To find how to use this module in detail, see L<Encode>.
29
30 =head1 BUGS
31
32 The C<Johab> (two-byte combination code) encoding is not supported.
33
34 ASCII part (0x00-0x7f) is preserved for all encodings, even though it
35 conflicts with mappings by the Unicode Consortium.  See
36
37 F<http://www.debian.or.jp/~kubota/unicode-symbols.html.en>
38
39 to find why it is implemented that way.
40
41 =head1 SEE ALSO
42
43 L<Encode>
44
45 =cut