1*0Sstevel@tonic-gatepackage Encode::Symbol;
2*0Sstevel@tonic-gateuse Encode;
3*0Sstevel@tonic-gateour $VERSION = do { my @r = (q$Revision: 1.22 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r };
4*0Sstevel@tonic-gate
5*0Sstevel@tonic-gateuse XSLoader;
6*0Sstevel@tonic-gateXSLoader::load(__PACKAGE__,$VERSION);
7*0Sstevel@tonic-gate
8*0Sstevel@tonic-gate1;
9*0Sstevel@tonic-gate__END__
10*0Sstevel@tonic-gate
11*0Sstevel@tonic-gate=head1 NAME
12*0Sstevel@tonic-gate
13*0Sstevel@tonic-gateEncode::Symbol - Symbol Encodings
14*0Sstevel@tonic-gate
15*0Sstevel@tonic-gate=head1 SYNOPSIS
16*0Sstevel@tonic-gate
17*0Sstevel@tonic-gate    use Encode qw/encode decode/;
18*0Sstevel@tonic-gate    $symbol  = encode("symbol", $utf8); # loads Encode::Symbol implicitly
19*0Sstevel@tonic-gate    $utf8 = decode("", $symbol);        # ditto
20*0Sstevel@tonic-gate
21*0Sstevel@tonic-gate=head1 ABSTRACT
22*0Sstevel@tonic-gate
23*0Sstevel@tonic-gateThis module implements symbol and dingbats encodings.  Encodings
24*0Sstevel@tonic-gatesupported are as follows.
25*0Sstevel@tonic-gate
26*0Sstevel@tonic-gate  Canonical   Alias		Description
27*0Sstevel@tonic-gate  --------------------------------------------------------------------
28*0Sstevel@tonic-gate  symbol
29*0Sstevel@tonic-gate  dingbats
30*0Sstevel@tonic-gate  AdobeZDingbat
31*0Sstevel@tonic-gate  AdobeSymbol
32*0Sstevel@tonic-gate  MacDingbats
33*0Sstevel@tonic-gate
34*0Sstevel@tonic-gate=head1 DESCRIPTION
35*0Sstevel@tonic-gate
36*0Sstevel@tonic-gateTo find out how to use this module in detail, see L<Encode>.
37*0Sstevel@tonic-gate
38*0Sstevel@tonic-gate=head1 SEE ALSO
39*0Sstevel@tonic-gate
40*0Sstevel@tonic-gateL<Encode>
41*0Sstevel@tonic-gate
42*0Sstevel@tonic-gate=cut
43