Encode::ISO2022JP2 - iso-2022-jp-2 - Extended iso-2022-jp character set
use Encode::ISO2022JP2;
use Encode qw/encode decode/;
$byte = encode("iso-2022-jp-2", $utf8);
$utf8 = decode("iso-2022-jp-2", $byte);
This module provides iso2022-jp-2 encoding.
Canonical Alias Description
--------------------------------------------------------------
iso-2022-jp-2 qr/\biso-?2022-?jp-?2$/i RFC 1554
--------------------------------------------------------------
To find out how to use this module in detail, see Encode.
Though RFC 1554 allows designation of JIS X 0201 Latin set at end of the lines,
it also states that such use of non-ASCII is "discouraged". So by
this module, ASCII is always assumed at end of encoded lines.
RFC 1554 ISO-2022-JP-2: Multilingual Extension of ISO-2022-JP.
Encode, Encode::JP, Encode::JISX0213.
Hatuka*nezumi - IKEDA Soji <hatuka(at)nezumi.nu>
Copyright (C) 2013 Hatuka*nezumi - IKEDA Soji.
This program is free software; you can redistribute it and/or
modify it under the same terms as Perl itself.