Commit | Line | Data |
0e567a6c |
1 | package Encode::KR; |
071db25d |
2 | BEGIN { |
3 | if (ord("A") == 193) { |
4 | die "Encode::KR not supported on EBCDIC\n"; |
5 | } |
6 | } |
7 | our $VERSION = do { my @r = (q$Revision: 0.97 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; |
c0d88b76 |
8 | |
9 | use Encode; |
0e567a6c |
10 | use XSLoader; |
11 | XSLoader::load('Encode::KR',$VERSION); |
12 | |
13 | 1; |
14 | __END__ |
b2729934 |
15 | =head1 NAME |
0e567a6c |
16 | |
b2729934 |
17 | Encode::KR - Korean Encodings |
0e567a6c |
18 | |
b2729934 |
19 | =head1 SYNOPSIS |
20 | |
1b2c56c8 |
21 | use Encode qw/encode decode/; |
2b217bf7 |
22 | $euc_kr = encode("euc-kr", $utf8); # loads Encode::KR implicitly |
ee981de6 |
23 | $utf8 = decode("euc-kr", $euc_kr); # ditto |
b2729934 |
24 | |
25 | =head1 DESCRIPTION |
26 | |
27 | This module implements Korean charset encodings. Encodings supported |
28 | are as follows. |
29 | |
fab31126 |
30 | |
31 | Canonical Alias Description |
32 | -------------------------------------------------------------------- |
33 | euc-kr /euc.*kr$/i EUC (Extended Unix Character) |
34 | /kr.*euc/i |
35 | ksc5601 Korean standard code set |
36 | cp949 Code Page 949 |
37 | (EUC-KR + Unified Hangul Code) |
5129552c |
38 | -------------------------------------------------------------------- |
b2729934 |
39 | |
40 | To find how to use this module in detail, see L<Encode>. |
41 | |
42 | =head1 BUGS |
43 | |
44 | The C<Johab> (two-byte combination code) encoding is not supported. |
45 | |
46 | ASCII part (0x00-0x7f) is preserved for all encodings, even though it |
47 | conflicts with mappings by the Unicode Consortium. See |
48 | |
49 | F<http://www.debian.or.jp/~kubota/unicode-symbols.html.en> |
50 | |
51 | to find why it is implemented that way. |
52 | |
53 | =head1 SEE ALSO |
54 | |
55 | L<Encode> |
56 | |
57 | =cut |