The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Encode::ISO2022JP2 - iso-2022-jp-2 - Extended iso-2022-jp character set

SYNOPSIS

    use Encode::ISO2022JP2;
    use Encode qw/encode decode/;
    $byte = encode("iso-2022-jp-2", $utf8);
    $utf8 = decode("iso-2022-jp-2", $byte);

ABSTRACT

This module provides iso2022-jp-2 encoding.

  Canonical       Alias                           Description
  --------------------------------------------------------------
  iso-2022-jp-2   qr/\biso-?2022-?jp-?2$/i        RFC 1554
  --------------------------------------------------------------

DESCRIPTION

To find out how to use this module in detail, see Encode.

Note on Implementation

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.

SEE ALSO

RFC 1554 ISO-2022-JP-2: Multilingual Extension of ISO-2022-JP.

Encode, Encode::JP, Encode::JISX0213.

AUTHOR

Hatuka*nezumi - IKEDA Soji <hatuka(at)nezumi.nu>

COPYRIGHT

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.