1Encode::ISO2022JP2(3) User Contributed Perl DocumentationEncode::ISO2022JP2(3)
2
3
4
6 Encode::ISO2022JP2 - iso-2022-jp-2 - Extended iso-2022-jp character set
7
9 use Encode::ISO2022JP2;
10 use Encode qw/encode decode/;
11 $byte = encode("iso-2022-jp-2", $utf8);
12 $utf8 = decode("iso-2022-jp-2", $byte);
13
15 This module provides iso2022-jp-2 encoding.
16
17 Canonical Alias Description
18 --------------------------------------------------------------
19 iso-2022-jp-2 qr/\biso-?2022-?jp-?2$/i RFC 1554
20 --------------------------------------------------------------
21
23 To find out how to use this module in detail, see Encode.
24
25 Note on Implementation
26 Though RFC 1554 allows designation of JIS X 0201 Latin set at end of
27 the lines, it also states that such use of non-ASCII is "discouraged".
28 So by this module, ASCII is always assumed at end of encoded lines.
29
31 RFC 1554 ISO-2022-JP-2: Multilingual Extension of ISO-2022-JP.
32
33 Encode, Encode::JP, Encode::JISX0213.
34
36 Hatuka*nezumi - IKEDA Soji <hatuka(at)nezumi.nu>
37
39 Copyright (C) 2013 Hatuka*nezumi - IKEDA Soji.
40
41 This program is free software; you can redistribute it and/or modify it
42 under the same terms as Perl itself.
43
44
45
46perl v5.36.0 2023-01-20 Encode::ISO2022JP2(3)