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