The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Encode::CNMap - enhanced Chinese encodings with Simplified-Traditional auto-mapping

SYNOPSIS

        use Encode;
        use Encode::CNMap;

        # Simplified encoding (GBK/GB) -> Big5 encoding い地い地
        $data="中華中华";
        printf "[Mixed GBK] %s", $data;
        printf " -> [Traditional Big5] %s\n", simp_to_b5($data);

        # Simplified encoding (GBK/GB) -> GB2312 encoding 中华中华
        $data="中華中华";
        printf "[Mixed GBK] %s", $data;
        printf " -> [Simplified GB2312] %s\n", simp_to_gb($data);

        # Traditional encoding (Big5) -> GB2312 encoding 中华中华
        $data="い地い地";
        printf "[Traditional Big5] %s", $data;
        printf " -> [Simplified GB2312] %s\n", trad_to_gb($data);

        # Traditional encoding (Big5) -> GBK encoding 中華中華
        $data="い地い地";
        printf "[Traditional Big5] %s", $data;
        printf " -> [Mixed GBK] %s\n", trad_to_gbk($data);

        # Encoding with Simplified<->Traditional Auto-Converting
        $data=Encode::decode("gbk", "中華中华");
        printf "Traditional Big5: %s\n", encode_to_b5($data);
        printf "Simplified GB2312: %s\n", encode_to_gb($data);
        printf "Mixed GBK: %s\n", encode_to_gbk($data);

DESCRIPTION

This module implements China-based Chinese charset encodings. Encodings supported are as follows.

  Canonical   Alias     Description
  --------------------------------------------------------------------
  gb2312-simp           Enhanced GB2312 simplified chinese encoding
  big5-trad             Enhanced Big5 traditional chinese encoding
  --------------------------------------------------------------------

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

BUGS, REQUESTS, COMMENTS

Please report any requests, suggestions or bugs via http://sourceforge.net/projects/bookbot http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Encode-CNMap

SEE ALSO

cnmap, cnmapdir, Encode, Encode::CN, Encode::HanConvert, Encode::HanExtra

COPYRIGHT AND LICENSE

Copyright 2003-2004 Qing-Jie Zhou <qjzhou@hotmail.com>

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

1 POD Error

The following errors were encountered while parsing the POD:

Around line 60:

Non-ASCII character seen before =encoding in 'い地い地'. Assuming UTF-8