4 die "Encode::JP not supported on EBCDIC\n";
10 XSLoader::load('Encode::JP',$VERSION);
13 use Encode::JP::ISO_2022_JP;
19 Encode::JP - Japanese Encodings
24 $euc_jp = encode("euc-jp", $utf8);
25 $utf8 = encode("euc-jp", $euc_jp);
29 This module implements Japanese charset encodings. Encodings
30 supported are as follows.
32 euc-jp EUC (Extended Unix Character)
33 shiftjis Shift JIS (aka MS Kanji)
35 iso-2022-jp ISO-2022-JP (7bit JIS with all X201 converted to X208)
36 macjapan Mac Japan (Shift JIS + Apple vendor mappings)
37 cp932 Code Page 932 (Shift JIS + Microsoft vendor mappings)
41 To find how to use this module in detail, see L<Encode>.
45 JIS X0212-1990 is not supported.
47 ASCII part (0x00-0x7f) is preserved for all encodings, even though it
48 conflicts with mappings by the Unicode Consortium. See
50 F<http://www.debian.or.jp/~kubota/unicode-symbols.html.en>
52 to find why it is implemented that way.