| Encode documentation | Contained in the Encode distribution. |
Encode::Symbol - Symbol Encodings
use Encode qw/encode decode/;
$symbol = encode("symbol", $utf8); # loads Encode::Symbol implicitly
$utf8 = decode("", $symbol); # ditto
This module implements symbol and dingbats encodings. Encodings supported are as follows.
Canonical Alias Description -------------------------------------------------------------------- symbol dingbats AdobeZDingbat AdobeSymbol MacDingbats
To find out how to use this module in detail, see Encode.
| Encode documentation | Contained in the Encode distribution. |
package Encode::Symbol; use strict; use warnings; use Encode; our $VERSION = do { my @r = ( q$Revision: 2.2 $ =~ /\d+/g ); sprintf "%d." . "%02d" x $#r, @r }; use XSLoader; XSLoader::load( __PACKAGE__, $VERSION ); 1; __END__