3 our $VERSION = do { my @r = (q$Revision: 0.96 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r };
6 XSLoader::load('Encode::Byte',$VERSION);
12 Encode::Byte - Single Byte Encodings
16 use Encode qw/encode decode/;
17 $latin1 = encode("iso-8859-1", $utf8); # loads Encode::Byte implicitly
18 $utf8 = decode("iso-8859-1", $latin1); # ditto
22 This module implements various single byte encodings. For most cases it uses
23 \x80-\xff (upper half) to map non-ASCII characters. Encodings
24 supported are as follows.
26 Canonical Alias Description
27 --------------------------------------------------------------------
39 (iso-8859-12 is nonexistent)
49 viscii # ASCII + vietnamese
60 # all cp* are also available as ibm-* and ms-*
77 To find how to use this module in detail, see L<Encode>.