This manual page is for Mac OS X version 10.6

If you are running a different version of Mac OS X, view the documentation locally:

  • In Terminal, using the man(1) command

Reading manual pages

Manual pages are intended as a quick reference for people who already understand a technology.

  • For more information about the manual page format, see the manual page for manpages(5).

  • For more information about this technology, look for other documentation in the Apple Reference Library.

  • For general information about writing shell scripts, read Shell Scripting Primer.



Encode::Byte(3pm)                     Perl Programmers Reference Guide                     Encode::Byte(3pm)



NAME
       Encode::Byte - Single Byte Encodings

SYNOPSIS
           use Encode qw/encode decode/;
           $greek = encode("iso-8859-7", $utf8);  # loads Encode::Byte implicitly
           $utf8  = decode("iso-8859-7", $greek); # ditto

ABSTRACT
       This module implements various single byte encodings.  For most cases it uses \x80-\xff (upper half)
       to map non-ASCII characters.  Encodings supported are as follows.

         Canonical      Alias                                Description
         --------------------------------------------------------------------# -------------------------------------------------------------------#
         # ISO 8859 series
         (iso-8859-1   is in built-in)
         iso-8859-2    latin2                                       [ISO]
         iso-8859-3    latin3                                       [ISO]
         iso-8859-4    latin4                                       [ISO]
         iso-8859-5                                                 [ISO]
         iso-8859-6                                                 [ISO]
         iso-8859-7                                                 [ISO]
         iso-8859-8                                                 [ISO]
         iso-8859-9    latin5                                       [ISO]
         iso-8859-10   latin6                                       [ISO]
         iso-8859-11
         (iso-8859-12 is nonexistent)
         iso-8859-13   latin7                                       [ISO]
         iso-8859-14   latin8                                       [ISO]
         iso-8859-15   latin9                                       [ISO]
         iso-8859-16   latin10                                      [ISO]

         # Cyrillic
         koi8-f
         koi8-r        cp878                                    [RFC1489]
         koi8-u                                                 [RFC2319]

         # Vietnamese
         viscii

         # all cp* are also available as ibm-*, ms-*, and windows-*
         # also see L<http://msdn.microsoft.com/workshop/author/dhtml/reference/charsets/charset4.asp>

         cp424
         cp437
         cp737
         cp775
         cp850
         cp852
         cp855
         cp856
         cp857
         cp860
         cp861
         cp862
         cp863
         cp864
         cp865
         cp866
         cp869
         cp874
         cp1006
         cp1250        WinLatin2
         cp1251        WinCyrillic
         cp1252        WinLatin1
         cp1253        WinGreek
         cp1254        WinTurkish
         cp1255        WinHebrew
         cp1256        WinArabic
         cp1257        WinBaltic
         cp1258        WinVietnamese

         # Macintosh
         # Also see L<http://developer.apple.com/technotes/tn/tn1150.html>
         MacArabic
         MacCentralEurRoman
         MacCroatian
         MacCyrillic
         MacFarsi
         MacGreek
         MacHebrew
         MacIcelandic
         MacRoman
         MacRomanian
         MacRumanian
         MacSami
         MacThai
         MacTurkish
         MacUkrainian

         # More vendor encodings
         AdobeStandardEncoding
         nextstep
         hp-roman8

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

SEE ALSO
       Encode



perl v5.8.9                                      2001-09-21                                Encode::Byte(3pm)

Reporting Problems

The way to report a problem with this manual page depends on the type of problem:

Content errors
Report errors in the content of this documentation to the Perl project. (See perlbug(1) for submission instructions.)
Bug reports
Report bugs in the functionality of the described tool or API to Apple through Bug Reporter and to the Perl project using perlbug(1).
Formatting problems
Report formatting mistakes in the online version of these pages with the feedback links below.