Re: [perl #32687] Encode::is_utf8 on tainted UTF8 string
[p5sagit/p5-mst-13.2.git] / ext / Encode / Symbol / Symbol.pm
CommitLineData
5129552c 1package Encode::Symbol;
656ebd29 2use strict;
3use warnings;
5129552c 4use Encode;
656ebd29 5our $VERSION = do { my @r = ( q$Revision: 2.2 $ =~ /\d+/g ); sprintf "%d." . "%02d" x $#r, @r };
5129552c 6
7use XSLoader;
d1256cb1 8XSLoader::load( __PACKAGE__, $VERSION );
5129552c 9
101;
11__END__
67d7b5ef 12
5129552c 13=head1 NAME
14
67d7b5ef 15Encode::Symbol - Symbol Encodings
5129552c 16
17=head1 SYNOPSIS
18
19 use Encode qw/encode decode/;
20 $symbol = encode("symbol", $utf8); # loads Encode::Symbol implicitly
21 $utf8 = decode("", $symbol); # ditto
22
23=head1 ABSTRACT
24
25This module implements symbol and dingbats encodings. Encodings
26supported are as follows.
27
28 Canonical Alias Description
29 --------------------------------------------------------------------
30 symbol
31 dingbats
a999c27c 32 AdobeZDingbat
33 AdobeSymbol
67d7b5ef 34 MacDingbats
5129552c 35
36=head1 DESCRIPTION
37
0ab8f81e 38To find out how to use this module in detail, see L<Encode>.
5129552c 39
40=head1 SEE ALSO
41
42L<Encode>
43
44=cut