This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Add test for \b{sb}
[perl5.git] / pod / perlebcdic.pod
CommitLineData
49781f4a
AB
1=encoding utf8
2
d396a558
JH
3=head1 NAME
4
5perlebcdic - Considerations for running Perl on EBCDIC platforms
6
7=head1 DESCRIPTION
8
9An exploration of some of the issues facing Perl programmers
4d2ca8b5 10on EBCDIC based computers.
d396a558 11
4d2ca8b5 12Portions of this document that are still incomplete are marked with XXX.
d396a558 13
4d2ca8b5
KW
14Early Perl versions worked on some EBCDIC machines, but the last known
15version that ran on EBCDIC was v5.8.7, until v5.22, when the Perl core
16again works on z/OS. Theoretically, it could work on OS/400 or Siemens'
17BS2000 (or their successors), but this is untested. In v5.22, not all
18the modules found on CPAN but shipped with core Perl work on z/OS.
19
20If you want to use Perl on a non-z/OS EBCDIC machine, please let us know
e1b711da
KW
21by sending mail to perlbug@perl.org
22
4d2ca8b5
KW
23Writing Perl on an EBCDIC platform is really no different than writing
24on an L</ASCII> one, but with different underlying numbers, as we'll see
25shortly. You'll have to know something about those L</ASCII> platforms
26because the documentation is biased and will frequently use example
27numbers that don't apply to EBCDIC. There are also very few CPAN
28modules that are written for EBCDIC and which don't work on ASCII;
29instead the vast majority of CPAN modules are written for ASCII, and
30some may happen to work on EBCDIC, while a few have been designed to
31portably work on both.
32
33If your code just uses the 52 letters A-Z and a-z, plus SPACE, the
34digits 0-9, and the punctuation characters that Perl uses, plus a few
35controls that are denoted by escape sequences like C<\n> and C<\t>, then
36there's nothing special about using Perl, and your code may very well
37work on an ASCII machine without change.
38
39But if you write code that uses C<\005> to mean a TAB or C<\xC1> to mean
40an "A", or C<\xDF> to mean a "E<yuml>" (small C<"y"> with a diaeresis),
41then your code may well work on your EBCDIC platform, but not on an
42ASCII one. That's fine to do if no one will ever want to run your code
43on an ASCII platform; but the bias in this document will be in writing
44code portable between EBCDIC and ASCII systems. Again, if every
45character you care about is easily enterable from your keyboard, you
46don't have to know anything about ASCII, but many keyboards don't easily
47allow you to directly enter, say, the character C<\xDF>, so you have to
48specify it indirectly, such as by using the C<"\xDF"> escape sequence.
49In those cases it's easiest to know something about the ASCII/Unicode
50character sets. If you know that the small "E<yuml>" is C<U+00FF>, then
51you can instead specify it as C<"\N{U+FF}">, and have the computer
52automatically translate it to C<\xDF> on your platform, and leave it as
53C<\xFF> on ASCII ones. Or you could specify it by name, C<\N{LATIN
54SMALL LETTER Y WITH DIAERESIS> and not have to know the numbers.
55Either way works, but require familiarity with Unicode.
56
d396a558
JH
57=head1 COMMON CHARACTER CODE SETS
58
59=head2 ASCII
60
4d2ca8b5
KW
61The American Standard Code for Information Interchange (ASCII or
62US-ASCII) is a set of
63integers running from 0 to 127 (decimal) that have standardized
64interpretations by the computers which use ASCII. For example, 65 means
65the letter "A".
eaf8b9b9
KW
66The range 0..127 can be covered by setting the bits in a 7-bit binary
67digit, hence the set is sometimes referred to as "7-bit ASCII".
68ASCII was described by the American National Standards Institute
69document ANSI X3.4-1986. It was also described by ISO 646:1991
70(with localization for currency symbols). The full ASCII set is
4d2ca8b5
KW
71given in the table L<below|/recipe 3> as the first 128 elements.
72Languages that
eaf8b9b9
KW
73can be written adequately with the characters in ASCII include
74English, Hawaiian, Indonesian, Swahili and some Native American
d396a558
JH
75languages.
76
4d2ca8b5
KW
77Most non-EBCDIC character sets are supersets of ASCII. That is the
78integers 0-127 mean what ASCII says they mean. But integers 128 and
79above are specific to the character set.
80
81Many of these fit entirely into 8 bits, using ASCII as 0-127, while
82specifying what 128-255 mean, and not using anything above 255.
83Thus, these are single-byte (or octet if you prefer) character sets.
84One important one (since Unicode is a superset of it) is the ISO 8859-1
85character set.
51b5cecb 86
d396a558
JH
87=head2 ISO 8859
88
4d2ca8b5
KW
89The ISO 8859-I<B<$n>> are a collection of character code sets from the
90International Organization for Standardization (ISO), each of which adds
91characters to the ASCII set that are typically found in various
5d9fe53c 92languages, many of which are based on the Roman, or Latin, alphabet.
4d2ca8b5
KW
93Most are for European languages, but there are also ones for Arabic,
94Greek, Hebrew, and Thai. There are good references on the web about
95all these.
d396a558
JH
96
97=head2 Latin 1 (ISO 8859-1)
98
eaf8b9b9
KW
99A particular 8-bit extension to ASCII that includes grave and acute
100accented Latin characters. Languages that can employ ISO 8859-1
101include all the languages covered by ASCII as well as Afrikaans,
102Albanian, Basque, Catalan, Danish, Faroese, Finnish, Norwegian,
103Portuguese, Spanish, and Swedish. Dutch is covered albeit without
104the ij ligature. French is covered too but without the oe ligature.
d396a558 105German can use ISO 8859-1 but must do so without German-style
eaf8b9b9 106quotation marks. This set is based on Western European extensions
d396a558 107to ASCII and is commonly encountered in world wide web work.
4d2ca8b5 108In IBM character code set identification terminology, ISO 8859-1 is
51b5cecb 109also known as CCSID 819 (or sometimes 0819 or even 00819).
d396a558
JH
110
111=head2 EBCDIC
112
eaf8b9b9 113The Extended Binary Coded Decimal Interchange Code refers to a
8a50e6a3 114large collection of single- and multi-byte coded character sets that are
4d2ca8b5
KW
115quite different from ASCII and ISO 8859-1, and are all slightly
116different from each other; they typically run on host computers. The
117EBCDIC encodings derive from 8-bit byte extensions of Hollerith punched
118card encodings, which long predate ASCII. The layout on the
119cards was such that high bits were set for the upper and lower case
120alphabetic
121characters C<[a-z]> and C<[A-Z]>, but there were gaps within each Latin
122alphabet range, visible in the table L<below|/recipe 3>. These gaps can
123cause complications.
d396a558 124
eaf8b9b9 125Some IBM EBCDIC character sets may be known by character code set
2c09a866 126identification numbers (CCSID numbers) or code page numbers.
51b5cecb 127
2bbc8d55
SP
128Perl can be compiled on platforms that run any of three commonly used EBCDIC
129character sets, listed below.
130
d5924ca6 131=head3 The 13 variant characters
1e054b24 132
51b5cecb
PP
133Among IBM EBCDIC character code sets there are 13 characters that
134are often mapped to different integer values. Those characters
135are known as the 13 "variant" characters and are:
d396a558 136
eaf8b9b9 137 \ [ ] { } ^ ~ ! # | $ @ `
d396a558 138
6ff677df 139When Perl is compiled for a platform, it looks at all of these characters to
2bbc8d55
SP
140guess which EBCDIC character set the platform uses, and adapts itself
141accordingly to that platform. If the platform uses a character set that is not
142one of the three Perl knows about, Perl will either fail to compile, or
143mistakenly and silently choose one of the three.
4d2ca8b5
KW
144
145=head3 EBCDIC code sets recognized by Perl
2bbc8d55 146
d5924ca6
KW
147=over
148
149=item B<0037>
d396a558 150
eaf8b9b9
KW
151Character code set ID 0037 is a mapping of the ASCII plus Latin-1
152characters (i.e. ISO 8859-1) to an EBCDIC set. 0037 is used
153in North American English locales on the OS/400 operating system
154that runs on AS/400 computers. CCSID 0037 differs from ISO 8859-1
a8f582bb 155in 236 places; in other words they agree on only 20 code point values.
d396a558 156
d5924ca6 157=item B<1047>
d396a558 158
eaf8b9b9
KW
159Character code set ID 1047 is also a mapping of the ASCII plus
160Latin-1 characters (i.e. ISO 8859-1) to an EBCDIC set. 1047 is
161used under Unix System Services for OS/390 or z/OS, and OpenEdition
a8f582bb
KW
162for VM/ESA. CCSID 1047 differs from CCSID 0037 in eight places,
163and from ISO 8859-1 in 236.
d396a558 164
d5924ca6 165=item B<POSIX-BC>
d396a558
JH
166
167The EBCDIC code page in use on Siemens' BS2000 system is distinct from
1681047 and 0037. It is identified below as the POSIX-BC set.
a8f582bb
KW
169Like 0037 and 1047, it is the same as ISO 8859-1 in 20 code point
170values.
d396a558 171
d5924ca6
KW
172=back
173
64c66fb6
JH
174=head2 Unicode code points versus EBCDIC code points
175
176In Unicode terminology a I<code point> is the number assigned to a
177character: for example, in EBCDIC the character "A" is usually assigned
4d2ca8b5
KW
178the number 193. In Unicode, the character "A" is assigned the number 65.
179All the code points in ASCII and Latin-1 (ISO 8859-1) have the same
180meaning in Unicode. All three of the recognized EBCDIC code sets have
181256 code points, and in each code set, all 256 code points are mapped to
182equivalent Latin1 code points. Obviously, "A" will map to "A", "B" =>
183"B", "%" => "%", etc., for all printable characters in Latin1 and these
184code pages.
185
186It also turns out that EBCDIC has nearly precise equivalents for the
187ASCII/Latin1 C0 controls and the DELETE control. (The C0 controls are
188those whose ASCII code points are 0..0x1F; things like TAB, ACK, BEL,
189etc.) A mapping is set up between these ASCII/EBCDIC controls. There
190isn't such a precise mapping between the C1 controls on ASCII platforms
191and the remaining EBCDIC controls. What has been done is to map these
192controls, mostly arbitrarily, to some otherwise unmatched character in
193the other character set. Most of these are very very rarely used
194nowadays in EBCDIC anyway, and their names have been dropped, without
195much complaint. For example the EO (Eight Ones) EBCDIC control
196(consisting of eight one bits = 0xFF) is mapped to the C1 APC control
197(0x9F), and you can't use the name "EO".
198
199The EBCDIC controls provide three possible line terminator characters,
200CR (0x0D), LF (0x25), and NL (0x15). On ASCII platforms, the symbols
201"NL" and "LF" refer to the same character, but in strict EBCDIC
202terminology they are different ones. The EBCDIC NL is mapped to the C1
203control called "NEL" ("Next Line"; here's a case where the mapping makes
204quite a bit of sense, and hence isn't just arbitrary). On some EBCDIC
205platforms, this NL or NEL is the typical line terminator. This is true
206of z/OS and BS2000. In these platforms, the C compilers will swap the
207LF and NEL code points, so that C<"\n"> is 0x15, and refers to NL. Perl
208does that too; you can see it in the code chart L<below|/recipe 3>.
209This makes things generally "just work" without you even having to be
210aware that there is a swap.
dc4af4bb 211
395f5a0c
PK
212=head2 Unicode and UTF
213
4d2ca8b5 214UTF stands for "Unicode Transformation Format".
2bbc8d55
SP
215UTF-8 is an encoding of Unicode into a sequence of 8-bit byte chunks, based on
216ASCII and Latin-1.
217The length of a sequence required to represent a Unicode code point
218depends on the ordinal number of that code point,
219with larger numbers requiring more bytes.
220UTF-EBCDIC is like UTF-8, but based on EBCDIC.
4d2ca8b5
KW
221They are enough alike that often, casual usage will conflate the two
222terms, and use "UTF-8" to mean both the UTF-8 found on ASCII platforms,
223and the UTF-EBCDIC found on EBCDIC ones.
2bbc8d55 224
4d2ca8b5 225You may see the term "invariant" character or code point.
fe749c9a 226This simply means that the character has the same numeric
4d2ca8b5
KW
227value and representation when encoded in UTF-8 (or UTF-EBCDIC) as when
228not. (Note that this is a very different concept from L</The 13 variant
229characters> mentioned above. Careful prose will use the term "UTF-8
230invariant" instead of just "invariant", but most often you'll see just
231"invariant".) For example, the ordinal value of "A" is 193 in most
232EBCDIC code pages, and also is 193 when encoded in UTF-EBCDIC. All
233UTF-8 (or UTF-EBCDIC) variant code points occupy at least two bytes when
234encoded in UTF-8 (or UTF-EBCDIC); by definition, the UTF-8 (or
235UTF-EBCDIC) invariant code points are exactly one byte whether encoded
236in UTF-8 (or UTF-EBCDIC), or not. (By now you see why people typically
237just say "UTF-8" when they also mean "UTF-EBCDIC". For the rest of this
238document, we'll mostly be casual about it too.)
239In ASCII UTF-8, the code points corresponding to the lowest 128
fe749c9a
KW
240ordinal numbers (0 - 127: the ASCII characters) are invariant.
241In UTF-EBCDIC, there are 160 invariant characters.
2bbc8d55 242(If you care, the EBCDIC invariants are those characters
fe749c9a 243which have ASCII equivalents, plus those that correspond to
4d2ca8b5 244the C1 controls (128 - 159 on ASCII platforms).)
fe749c9a 245
2bbc8d55 246A string encoded in UTF-EBCDIC may be longer (but never shorter) than
4d2ca8b5
KW
247one encoded in UTF-8. Perl extends UTF-8 so that it can encode code
248points above the Unicode maximum of U+10FFFF. It extends UTF-EBCDIC as
249well, but due to the inherent limitations in UTF-EBCDIC, the maximum
250code point expressible is U+7FFF_FFFF, even if the word size is more
251than 32 bits.
252
253UTF-EBCDIC is defined by
254L<Unicode Technical Report #16|http://www.unicode.org/reports/tr16>.
255It is defined based on CCSID 1047, not allowing for the differences for
256other code pages. This allows for easy interchange of text between
257computers running different code pages, but makes it unusable, without
258adaptation, for Perl on those other code pages.
259
260The reason for this unusability is that a fundamental assumption of Perl
261is that the characters it cares about for parsing and lexical analysis
262are the same whether or not the text is in UTF-8. For example, Perl
263expects the character C<"["> to have the same representation, no matter
264if the string containing it (or program text) is UTF-8 encoded or not.
265To ensure this, Perl adapts UTF-EBCDIC to the particular code page so
266that all characters it expects to be UTF-8 invariant are in fact UTF-8
267invariant. This means that text generated on a computer running one
268version of Perl's UTF-EBCDIC has to be translated to be intelligible to
269a computer running another.
395f5a0c 270
8704cfd1 271=head2 Using Encode
8f94de01 272
4d2ca8b5 273Starting from Perl 5.8 you can use the standard module Encode
2bbc8d55
SP
274to translate from EBCDIC to Latin-1 code points.
275Encode knows about more EBCDIC character sets than Perl can currently
276be compiled to run on.
8f94de01 277
c72e675e 278 use Encode 'from_to';
8f94de01 279
c72e675e 280 my %ebcdic = ( 176 => 'cp37', 95 => 'cp1047', 106 => 'posix-bc' );
8f94de01 281
c72e675e
KW
282 # $a is in EBCDIC code points
283 from_to($a, $ebcdic{ord '^'}, 'latin1');
284 # $a is ISO 8859-1 code points
8f94de01
JH
285
286and from Latin-1 code points to EBCDIC code points
287
c72e675e 288 use Encode 'from_to';
8f94de01 289
c72e675e 290 my %ebcdic = ( 176 => 'cp37', 95 => 'cp1047', 106 => 'posix-bc' );
8f94de01 291
c72e675e
KW
292 # $a is ISO 8859-1 code points
293 from_to($a, 'latin1', $ebcdic{ord '^'});
294 # $a is in EBCDIC code points
8f94de01
JH
295
296For doing I/O it is suggested that you use the autotranslating features
297of PerlIO, see L<perluniintro>.
298
4d2ca8b5 299Since version 5.8 Perl uses the PerlIO I/O library. This enables
aa2b82fc
JH
300you to use different encodings per IO channel. For example you may use
301
302 use Encode;
303 open($f, ">:encoding(ascii)", "test.ascii");
304 print $f "Hello World!\n";
305 open($f, ">:encoding(cp37)", "test.ebcdic");
306 print $f "Hello World!\n";
307 open($f, ">:encoding(latin1)", "test.latin1");
308 print $f "Hello World!\n";
309 open($f, ">:encoding(utf8)", "test.utf8");
310 print $f "Hello World!\n";
311
2c09a866 312to get four files containing "Hello World!\n" in ASCII, CP 0037 EBCDIC,
2bbc8d55 313ISO 8859-1 (Latin-1) (in this example identical to ASCII since only ASCII
eaf8b9b9 314characters were printed), and
2bbc8d55
SP
315UTF-EBCDIC (in this example identical to normal EBCDIC since only characters
316that don't differ between EBCDIC and UTF-EBCDIC were printed). See the
4d2ca8b5 317documentation of L<Encode::PerlIO> for details.
aa2b82fc
JH
318
319As the PerlIO layer uses raw IO (bytes) internally, all this totally
320ignores things like the type of your filesystem (ASCII or EBCDIC).
321
d396a558
JH
322=head1 SINGLE OCTET TABLES
323
324The following tables list the ASCII and Latin 1 ordered sets including
325the subsets: C0 controls (0..31), ASCII graphics (32..7e), delete (7f),
eaf8b9b9 326C1 controls (80..9f), and Latin-1 (a.k.a. ISO 8859-1) (a0..ff). In the
8d725451 327table names of the Latin 1
eaf8b9b9 328extensions to ASCII have been labelled with character names roughly
8d725451 329corresponding to I<The Unicode Standard, Version 6.1> albeit with
4d2ca8b5
KW
330substitutions such as C<s/LATIN//> and C<s/VULGAR//> in all cases;
331S<C<s/CAPITAL LETTER//>> in some cases; and
332S<C<s/SMALL LETTER ([A-Z])/\l$1/>> in some other
0e56abba 333cases. Controls are listed using their Unicode 6.2 abbreviations.
eaf8b9b9 334The differences between the 0037 and 1047 sets are
4d2ca8b5
KW
335flagged with C<**>. The differences between the 1047 and POSIX-BC sets
336are flagged with C<##.> All C<ord()> numbers listed are decimal. If you
8d725451
KW
337would rather see this table listing octal values, then run the table
338(that is, the pod source text of this document, since this recipe may not
1e054b24 339work with a pod2_other_format translation) through:
d396a558
JH
340
341=over 4
342
343=item recipe 0
344
345=back
346
8d725451
KW
347 perl -ne 'if(/(.{29})(\d+)\s+(\d+)\s+(\d+)\s+(\d+)/)' \
348 -e '{printf("%s%-5.03o%-5.03o%-5.03o%.03o\n",$1,$2,$3,$4,$5)}' \
5f26d5fd 349 perlebcdic.pod
395f5a0c
PK
350
351If you want to retain the UTF-x code points then in script form you
352might want to write:
353
354=over 4
355
356=item recipe 1
357
358=back
359
c72e675e
KW
360 open(FH,"<perlebcdic.pod") or die "Could not open perlebcdic.pod: $!";
361 while (<FH>) {
f11f9c4c
KW
362 if (/(.{29})(\d+)\s+(\d+)\s+(\d+)\s+(\d+)\s+(\d+)\.?(\d*)
363 \s+(\d+)\.?(\d*)/x)
5f26d5fd 364 {
c72e675e 365 if ($7 ne '' && $9 ne '') {
5f26d5fd 366 printf(
8d725451 367 "%s%-5.03o%-5.03o%-5.03o%-5.03o%-3o.%-5o%-3o.%.03o\n",
5f26d5fd 368 $1,$2,$3,$4,$5,$6,$7,$8,$9);
c72e675e
KW
369 }
370 elsif ($7 ne '') {
8d725451 371 printf("%s%-5.03o%-5.03o%-5.03o%-5.03o%-3o.%-5o%.03o\n",
c72e675e
KW
372 $1,$2,$3,$4,$5,$6,$7,$8);
373 }
374 else {
8d725451 375 printf("%s%-5.03o%-5.03o%-5.03o%-5.03o%-5.03o%.03o\n",
5f26d5fd 376 $1,$2,$3,$4,$5,$6,$8);
c72e675e
KW
377 }
378 }
379 }
d396a558
JH
380
381If you would rather see this table listing hexadecimal values then
382run the table through:
383
384=over 4
385
395f5a0c 386=item recipe 2
d396a558
JH
387
388=back
389
8d725451
KW
390 perl -ne 'if(/(.{29})(\d+)\s+(\d+)\s+(\d+)\s+(\d+)/)' \
391 -e '{printf("%s%-5.02X%-5.02X%-5.02X%.02X\n",$1,$2,$3,$4,$5)}' \
5f26d5fd 392 perlebcdic.pod
395f5a0c
PK
393
394Or, in order to retain the UTF-x code points in hexadecimal:
395
396=over 4
397
398=item recipe 3
399
400=back
401
c72e675e
KW
402 open(FH,"<perlebcdic.pod") or die "Could not open perlebcdic.pod: $!";
403 while (<FH>) {
f11f9c4c
KW
404 if (/(.{29})(\d+)\s+(\d+)\s+(\d+)\s+(\d+)\s+(\d+)\.?(\d*)
405 \s+(\d+)\.?(\d*)/x)
5f26d5fd 406 {
c72e675e 407 if ($7 ne '' && $9 ne '') {
5f26d5fd 408 printf(
8d725451 409 "%s%-5.02X%-5.02X%-5.02X%-5.02X%-2X.%-6.02X%02X.%02X\n",
c72e675e
KW
410 $1,$2,$3,$4,$5,$6,$7,$8,$9);
411 }
412 elsif ($7 ne '') {
8d725451 413 printf("%s%-5.02X%-5.02X%-5.02X%-5.02X%-2X.%-6.02X%02X\n",
c72e675e
KW
414 $1,$2,$3,$4,$5,$6,$7,$8);
415 }
416 else {
8d725451 417 printf("%s%-5.02X%-5.02X%-5.02X%-5.02X%-5.02X%02X\n",
5f26d5fd 418 $1,$2,$3,$4,$5,$6,$8);
c72e675e
KW
419 }
420 }
421 }
395f5a0c
PK
422
423
8d725451 424 ISO
f11f9c4c
KW
425 8859-1 POS- CCSID
426 CCSID CCSID CCSID IX- 1047
8d725451
KW
427 chr 0819 0037 1047 BC UTF-8 UTF-EBCDIC
428 ---------------------------------------------------------------------
429 <NUL> 0 0 0 0 0 0
430 <SOH> 1 1 1 1 1 1
431 <STX> 2 2 2 2 2 2
432 <ETX> 3 3 3 3 3 3
433 <EOT> 4 55 55 55 4 55
434 <ENQ> 5 45 45 45 5 45
435 <ACK> 6 46 46 46 6 46
436 <BEL> 7 47 47 47 7 47
437 <BS> 8 22 22 22 8 22
438 <HT> 9 5 5 5 9 5
439 <LF> 10 37 21 21 10 21 **
440 <VT> 11 11 11 11 11 11
441 <FF> 12 12 12 12 12 12
442 <CR> 13 13 13 13 13 13
443 <SO> 14 14 14 14 14 14
444 <SI> 15 15 15 15 15 15
445 <DLE> 16 16 16 16 16 16
446 <DC1> 17 17 17 17 17 17
447 <DC2> 18 18 18 18 18 18
448 <DC3> 19 19 19 19 19 19
449 <DC4> 20 60 60 60 20 60
450 <NAK> 21 61 61 61 21 61
451 <SYN> 22 50 50 50 22 50
452 <ETB> 23 38 38 38 23 38
453 <CAN> 24 24 24 24 24 24
454 <EOM> 25 25 25 25 25 25
455 <SUB> 26 63 63 63 26 63
456 <ESC> 27 39 39 39 27 39
457 <FS> 28 28 28 28 28 28
458 <GS> 29 29 29 29 29 29
459 <RS> 30 30 30 30 30 30
460 <US> 31 31 31 31 31 31
461 <SPACE> 32 64 64 64 32 64
462 ! 33 90 90 90 33 90
463 " 34 127 127 127 34 127
464 # 35 123 123 123 35 123
465 $ 36 91 91 91 36 91
466 % 37 108 108 108 37 108
467 & 38 80 80 80 38 80
468 ' 39 125 125 125 39 125
469 ( 40 77 77 77 40 77
470 ) 41 93 93 93 41 93
471 * 42 92 92 92 42 92
472 + 43 78 78 78 43 78
473 , 44 107 107 107 44 107
474 - 45 96 96 96 45 96
475 . 46 75 75 75 46 75
476 / 47 97 97 97 47 97
477 0 48 240 240 240 48 240
478 1 49 241 241 241 49 241
479 2 50 242 242 242 50 242
480 3 51 243 243 243 51 243
481 4 52 244 244 244 52 244
482 5 53 245 245 245 53 245
483 6 54 246 246 246 54 246
484 7 55 247 247 247 55 247
485 8 56 248 248 248 56 248
486 9 57 249 249 249 57 249
487 : 58 122 122 122 58 122
488 ; 59 94 94 94 59 94
489 < 60 76 76 76 60 76
490 = 61 126 126 126 61 126
491 > 62 110 110 110 62 110
492 ? 63 111 111 111 63 111
493 @ 64 124 124 124 64 124
494 A 65 193 193 193 65 193
495 B 66 194 194 194 66 194
496 C 67 195 195 195 67 195
497 D 68 196 196 196 68 196
498 E 69 197 197 197 69 197
499 F 70 198 198 198 70 198
500 G 71 199 199 199 71 199
501 H 72 200 200 200 72 200
502 I 73 201 201 201 73 201
503 J 74 209 209 209 74 209
504 K 75 210 210 210 75 210
505 L 76 211 211 211 76 211
506 M 77 212 212 212 77 212
507 N 78 213 213 213 78 213
508 O 79 214 214 214 79 214
509 P 80 215 215 215 80 215
510 Q 81 216 216 216 81 216
511 R 82 217 217 217 82 217
512 S 83 226 226 226 83 226
513 T 84 227 227 227 84 227
514 U 85 228 228 228 85 228
515 V 86 229 229 229 86 229
516 W 87 230 230 230 87 230
517 X 88 231 231 231 88 231
518 Y 89 232 232 232 89 232
519 Z 90 233 233 233 90 233
520 [ 91 186 173 187 91 173 ** ##
521 \ 92 224 224 188 92 224 ##
522 ] 93 187 189 189 93 189 **
523 ^ 94 176 95 106 94 95 ** ##
524 _ 95 109 109 109 95 109
525 ` 96 121 121 74 96 121 ##
526 a 97 129 129 129 97 129
527 b 98 130 130 130 98 130
528 c 99 131 131 131 99 131
529 d 100 132 132 132 100 132
530 e 101 133 133 133 101 133
531 f 102 134 134 134 102 134
532 g 103 135 135 135 103 135
533 h 104 136 136 136 104 136
534 i 105 137 137 137 105 137
535 j 106 145 145 145 106 145
536 k 107 146 146 146 107 146
537 l 108 147 147 147 108 147
538 m 109 148 148 148 109 148
539 n 110 149 149 149 110 149
540 o 111 150 150 150 111 150
541 p 112 151 151 151 112 151
542 q 113 152 152 152 113 152
543 r 114 153 153 153 114 153
544 s 115 162 162 162 115 162
545 t 116 163 163 163 116 163
546 u 117 164 164 164 117 164
547 v 118 165 165 165 118 165
548 w 119 166 166 166 119 166
549 x 120 167 167 167 120 167
550 y 121 168 168 168 121 168
551 z 122 169 169 169 122 169
552 { 123 192 192 251 123 192 ##
553 | 124 79 79 79 124 79
554 } 125 208 208 253 125 208 ##
555 ~ 126 161 161 255 126 161 ##
556 <DEL> 127 7 7 7 127 7
557 <PAD> 128 32 32 32 194.128 32
558 <HOP> 129 33 33 33 194.129 33
559 <BPH> 130 34 34 34 194.130 34
560 <NBH> 131 35 35 35 194.131 35
561 <IND> 132 36 36 36 194.132 36
562 <NEL> 133 21 37 37 194.133 37 **
563 <SSA> 134 6 6 6 194.134 6
564 <ESA> 135 23 23 23 194.135 23
565 <HTS> 136 40 40 40 194.136 40
566 <HTJ> 137 41 41 41 194.137 41
567 <VTS> 138 42 42 42 194.138 42
568 <PLD> 139 43 43 43 194.139 43
569 <PLU> 140 44 44 44 194.140 44
570 <RI> 141 9 9 9 194.141 9
571 <SS2> 142 10 10 10 194.142 10
572 <SS3> 143 27 27 27 194.143 27
573 <DCS> 144 48 48 48 194.144 48
574 <PU1> 145 49 49 49 194.145 49
575 <PU2> 146 26 26 26 194.146 26
576 <STS> 147 51 51 51 194.147 51
577 <CCH> 148 52 52 52 194.148 52
578 <MW> 149 53 53 53 194.149 53
579 <SPA> 150 54 54 54 194.150 54
580 <EPA> 151 8 8 8 194.151 8
581 <SOS> 152 56 56 56 194.152 56
582 <SGC> 153 57 57 57 194.153 57
583 <SCI> 154 58 58 58 194.154 58
584 <CSI> 155 59 59 59 194.155 59
585 <ST> 156 4 4 4 194.156 4
586 <OSC> 157 20 20 20 194.157 20
587 <PM> 158 62 62 62 194.158 62
588 <APC> 159 255 255 95 194.159 255 ##
589 <NON-BREAKING SPACE> 160 65 65 65 194.160 128.65
590 <INVERTED "!" > 161 170 170 170 194.161 128.66
591 <CENT SIGN> 162 74 74 176 194.162 128.67 ##
592 <POUND SIGN> 163 177 177 177 194.163 128.68
593 <CURRENCY SIGN> 164 159 159 159 194.164 128.69
594 <YEN SIGN> 165 178 178 178 194.165 128.70
595 <BROKEN BAR> 166 106 106 208 194.166 128.71 ##
596 <SECTION SIGN> 167 181 181 181 194.167 128.72
597 <DIAERESIS> 168 189 187 121 194.168 128.73 ** ##
598 <COPYRIGHT SIGN> 169 180 180 180 194.169 128.74
599 <FEMININE ORDINAL> 170 154 154 154 194.170 128.81
600 <LEFT POINTING GUILLEMET> 171 138 138 138 194.171 128.82
601 <NOT SIGN> 172 95 176 186 194.172 128.83 ** ##
602 <SOFT HYPHEN> 173 202 202 202 194.173 128.84
603 <REGISTERED TRADE MARK> 174 175 175 175 194.174 128.85
604 <MACRON> 175 188 188 161 194.175 128.86 ##
605 <DEGREE SIGN> 176 144 144 144 194.176 128.87
606 <PLUS-OR-MINUS SIGN> 177 143 143 143 194.177 128.88
607 <SUPERSCRIPT TWO> 178 234 234 234 194.178 128.89
608 <SUPERSCRIPT THREE> 179 250 250 250 194.179 128.98
609 <ACUTE ACCENT> 180 190 190 190 194.180 128.99
610 <MICRO SIGN> 181 160 160 160 194.181 128.100
611 <PARAGRAPH SIGN> 182 182 182 182 194.182 128.101
612 <MIDDLE DOT> 183 179 179 179 194.183 128.102
613 <CEDILLA> 184 157 157 157 194.184 128.103
614 <SUPERSCRIPT ONE> 185 218 218 218 194.185 128.104
615 <MASC. ORDINAL INDICATOR> 186 155 155 155 194.186 128.105
616 <RIGHT POINTING GUILLEMET> 187 139 139 139 194.187 128.106
617 <FRACTION ONE QUARTER> 188 183 183 183 194.188 128.112
618 <FRACTION ONE HALF> 189 184 184 184 194.189 128.113
619 <FRACTION THREE QUARTERS> 190 185 185 185 194.190 128.114
620 <INVERTED QUESTION MARK> 191 171 171 171 194.191 128.115
621 <A WITH GRAVE> 192 100 100 100 195.128 138.65
622 <A WITH ACUTE> 193 101 101 101 195.129 138.66
623 <A WITH CIRCUMFLEX> 194 98 98 98 195.130 138.67
624 <A WITH TILDE> 195 102 102 102 195.131 138.68
625 <A WITH DIAERESIS> 196 99 99 99 195.132 138.69
626 <A WITH RING ABOVE> 197 103 103 103 195.133 138.70
627 <CAPITAL LIGATURE AE> 198 158 158 158 195.134 138.71
628 <C WITH CEDILLA> 199 104 104 104 195.135 138.72
629 <E WITH GRAVE> 200 116 116 116 195.136 138.73
630 <E WITH ACUTE> 201 113 113 113 195.137 138.74
631 <E WITH CIRCUMFLEX> 202 114 114 114 195.138 138.81
632 <E WITH DIAERESIS> 203 115 115 115 195.139 138.82
633 <I WITH GRAVE> 204 120 120 120 195.140 138.83
634 <I WITH ACUTE> 205 117 117 117 195.141 138.84
635 <I WITH CIRCUMFLEX> 206 118 118 118 195.142 138.85
636 <I WITH DIAERESIS> 207 119 119 119 195.143 138.86
637 <CAPITAL LETTER ETH> 208 172 172 172 195.144 138.87
638 <N WITH TILDE> 209 105 105 105 195.145 138.88
639 <O WITH GRAVE> 210 237 237 237 195.146 138.89
640 <O WITH ACUTE> 211 238 238 238 195.147 138.98
641 <O WITH CIRCUMFLEX> 212 235 235 235 195.148 138.99
642 <O WITH TILDE> 213 239 239 239 195.149 138.100
643 <O WITH DIAERESIS> 214 236 236 236 195.150 138.101
644 <MULTIPLICATION SIGN> 215 191 191 191 195.151 138.102
645 <O WITH STROKE> 216 128 128 128 195.152 138.103
646 <U WITH GRAVE> 217 253 253 224 195.153 138.104 ##
647 <U WITH ACUTE> 218 254 254 254 195.154 138.105
648 <U WITH CIRCUMFLEX> 219 251 251 221 195.155 138.106 ##
649 <U WITH DIAERESIS> 220 252 252 252 195.156 138.112
650 <Y WITH ACUTE> 221 173 186 173 195.157 138.113 ** ##
651 <CAPITAL LETTER THORN> 222 174 174 174 195.158 138.114
652 <SMALL LETTER SHARP S> 223 89 89 89 195.159 138.115
653 <a WITH GRAVE> 224 68 68 68 195.160 139.65
654 <a WITH ACUTE> 225 69 69 69 195.161 139.66
655 <a WITH CIRCUMFLEX> 226 66 66 66 195.162 139.67
656 <a WITH TILDE> 227 70 70 70 195.163 139.68
657 <a WITH DIAERESIS> 228 67 67 67 195.164 139.69
658 <a WITH RING ABOVE> 229 71 71 71 195.165 139.70
659 <SMALL LIGATURE ae> 230 156 156 156 195.166 139.71
660 <c WITH CEDILLA> 231 72 72 72 195.167 139.72
661 <e WITH GRAVE> 232 84 84 84 195.168 139.73
662 <e WITH ACUTE> 233 81 81 81 195.169 139.74
663 <e WITH CIRCUMFLEX> 234 82 82 82 195.170 139.81
664 <e WITH DIAERESIS> 235 83 83 83 195.171 139.82
665 <i WITH GRAVE> 236 88 88 88 195.172 139.83
666 <i WITH ACUTE> 237 85 85 85 195.173 139.84
667 <i WITH CIRCUMFLEX> 238 86 86 86 195.174 139.85
668 <i WITH DIAERESIS> 239 87 87 87 195.175 139.86
669 <SMALL LETTER eth> 240 140 140 140 195.176 139.87
670 <n WITH TILDE> 241 73 73 73 195.177 139.88
671 <o WITH GRAVE> 242 205 205 205 195.178 139.89
672 <o WITH ACUTE> 243 206 206 206 195.179 139.98
673 <o WITH CIRCUMFLEX> 244 203 203 203 195.180 139.99
674 <o WITH TILDE> 245 207 207 207 195.181 139.100
675 <o WITH DIAERESIS> 246 204 204 204 195.182 139.101
676 <DIVISION SIGN> 247 225 225 225 195.183 139.102
677 <o WITH STROKE> 248 112 112 112 195.184 139.103
678 <u WITH GRAVE> 249 221 221 192 195.185 139.104 ##
679 <u WITH ACUTE> 250 222 222 222 195.186 139.105
680 <u WITH CIRCUMFLEX> 251 219 219 219 195.187 139.106
681 <u WITH DIAERESIS> 252 220 220 220 195.188 139.112
682 <y WITH ACUTE> 253 141 141 141 195.189 139.113
683 <SMALL LETTER thorn> 254 142 142 142 195.190 139.114
684 <y WITH DIAERESIS> 255 223 223 223 195.191 139.115
d396a558
JH
685
686If you would rather see the above table in CCSID 0037 order rather than
687ASCII + Latin-1 order then run the table through:
688
689=over 4
690
395f5a0c 691=item recipe 4
d396a558
JH
692
693=back
694
5f26d5fd 695 perl \
8d725451 696 -ne 'if(/.{29}\d{1,3}\s{2,4}\d{1,3}\s{2,4}\d{1,3}\s{2,4}\d{1,3}/)'\
84f709e7
JH
697 -e '{push(@l,$_)}' \
698 -e 'END{print map{$_->[0]}' \
699 -e ' sort{$a->[1] <=> $b->[1]}' \
8d725451 700 -e ' map{[$_,substr($_,34,3)]}@l;}' perlebcdic.pod
d396a558 701
2c09a866 702If you would rather see it in CCSID 1047 order then change the number
8d725451 70334 in the last line to 39, like this:
d396a558
JH
704
705=over 4
706
395f5a0c 707=item recipe 5
d396a558
JH
708
709=back
710
5f26d5fd 711 perl \
8d725451 712 -ne 'if(/.{29}\d{1,3}\s{2,4}\d{1,3}\s{2,4}\d{1,3}\s{2,4}\d{1,3}/)'\
5f26d5fd
KW
713 -e '{push(@l,$_)}' \
714 -e 'END{print map{$_->[0]}' \
715 -e ' sort{$a->[1] <=> $b->[1]}' \
8d725451 716 -e ' map{[$_,substr($_,39,3)]}@l;}' perlebcdic.pod
d396a558 717
2c09a866 718If you would rather see it in POSIX-BC order then change the number
4d2ca8b5 71934 in the last line to 44, like this:
d396a558
JH
720
721=over 4
722
395f5a0c 723=item recipe 6
d396a558
JH
724
725=back
726
5f26d5fd 727 perl \
8d725451 728 -ne 'if(/.{29}\d{1,3}\s{2,4}\d{1,3}\s{2,4}\d{1,3}\s{2,4}\d{1,3}/)'\
84f709e7
JH
729 -e '{push(@l,$_)}' \
730 -e 'END{print map{$_->[0]}' \
731 -e ' sort{$a->[1] <=> $b->[1]}' \
8d725451 732 -e ' map{[$_,substr($_,44,3)]}@l;}' perlebcdic.pod
d396a558 733
4d2ca8b5 734=head2 Table in hex, sorted in 1047 order
d396a558 735
4d2ca8b5
KW
736Since this document was first written, the convention has become more
737and more to use hexadecimal notation for code points. To do this with
738the recipes and to also sort is a multi-step process, so here, for
739convenience, is the table from above, re-sorted to be in Code Page 1047
740order, and using hex notation.
d396a558 741
4d2ca8b5
KW
742 ISO
743 8859-1 POS- CCSID
744 CCSID CCSID CCSID IX- 1047
745 chr 0819 0037 1047 BC UTF-8 UTF-EBCDIC
746 ---------------------------------------------------------------------
747 <NUL> 00 00 00 00 00 00
748 <SOH> 01 01 01 01 01 01
749 <STX> 02 02 02 02 02 02
750 <ETX> 03 03 03 03 03 03
751 <ST> 9C 04 04 04 C2.9C 04
752 <HT> 09 05 05 05 09 05
753 <SSA> 86 06 06 06 C2.86 06
754 <DEL> 7F 07 07 07 7F 07
755 <EPA> 97 08 08 08 C2.97 08
756 <RI> 8D 09 09 09 C2.8D 09
757 <SS2> 8E 0A 0A 0A C2.8E 0A
758 <VT> 0B 0B 0B 0B 0B 0B
759 <FF> 0C 0C 0C 0C 0C 0C
760 <CR> 0D 0D 0D 0D 0D 0D
761 <SO> 0E 0E 0E 0E 0E 0E
762 <SI> 0F 0F 0F 0F 0F 0F
763 <DLE> 10 10 10 10 10 10
764 <DC1> 11 11 11 11 11 11
765 <DC2> 12 12 12 12 12 12
766 <DC3> 13 13 13 13 13 13
767 <OSC> 9D 14 14 14 C2.9D 14
768 <LF> 0A 25 15 15 0A 15 **
769 <BS> 08 16 16 16 08 16
770 <ESA> 87 17 17 17 C2.87 17
771 <CAN> 18 18 18 18 18 18
772 <EOM> 19 19 19 19 19 19
773 <PU2> 92 1A 1A 1A C2.92 1A
774 <SS3> 8F 1B 1B 1B C2.8F 1B
775 <FS> 1C 1C 1C 1C 1C 1C
776 <GS> 1D 1D 1D 1D 1D 1D
777 <RS> 1E 1E 1E 1E 1E 1E
778 <US> 1F 1F 1F 1F 1F 1F
779 <PAD> 80 20 20 20 C2.80 20
780 <HOP> 81 21 21 21 C2.81 21
781 <BPH> 82 22 22 22 C2.82 22
782 <NBH> 83 23 23 23 C2.83 23
783 <IND> 84 24 24 24 C2.84 24
784 <NEL> 85 15 25 25 C2.85 25 **
785 <ETB> 17 26 26 26 17 26
786 <ESC> 1B 27 27 27 1B 27
787 <HTS> 88 28 28 28 C2.88 28
788 <HTJ> 89 29 29 29 C2.89 29
789 <VTS> 8A 2A 2A 2A C2.8A 2A
790 <PLD> 8B 2B 2B 2B C2.8B 2B
791 <PLU> 8C 2C 2C 2C C2.8C 2C
792 <ENQ> 05 2D 2D 2D 05 2D
793 <ACK> 06 2E 2E 2E 06 2E
794 <BEL> 07 2F 2F 2F 07 2F
795 <DCS> 90 30 30 30 C2.90 30
796 <PU1> 91 31 31 31 C2.91 31
797 <SYN> 16 32 32 32 16 32
798 <STS> 93 33 33 33 C2.93 33
799 <CCH> 94 34 34 34 C2.94 34
800 <MW> 95 35 35 35 C2.95 35
801 <SPA> 96 36 36 36 C2.96 36
802 <EOT> 04 37 37 37 04 37
803 <SOS> 98 38 38 38 C2.98 38
804 <SGC> 99 39 39 39 C2.99 39
805 <SCI> 9A 3A 3A 3A C2.9A 3A
806 <CSI> 9B 3B 3B 3B C2.9B 3B
807 <DC4> 14 3C 3C 3C 14 3C
808 <NAK> 15 3D 3D 3D 15 3D
809 <PM> 9E 3E 3E 3E C2.9E 3E
810 <SUB> 1A 3F 3F 3F 1A 3F
811 <SPACE> 20 40 40 40 20 40
812 <NON-BREAKING SPACE> A0 41 41 41 C2.A0 80.41
813 <a WITH CIRCUMFLEX> E2 42 42 42 C3.A2 8B.43
814 <a WITH DIAERESIS> E4 43 43 43 C3.A4 8B.45
815 <a WITH GRAVE> E0 44 44 44 C3.A0 8B.41
816 <a WITH ACUTE> E1 45 45 45 C3.A1 8B.42
817 <a WITH TILDE> E3 46 46 46 C3.A3 8B.44
818 <a WITH RING ABOVE> E5 47 47 47 C3.A5 8B.46
819 <c WITH CEDILLA> E7 48 48 48 C3.A7 8B.48
820 <n WITH TILDE> F1 49 49 49 C3.B1 8B.58
821 <CENT SIGN> A2 4A 4A B0 C2.A2 80.43 ##
822 . 2E 4B 4B 4B 2E 4B
823 < 3C 4C 4C 4C 3C 4C
824 ( 28 4D 4D 4D 28 4D
825 + 2B 4E 4E 4E 2B 4E
826 | 7C 4F 4F 4F 7C 4F
827 & 26 50 50 50 26 50
828 <e WITH ACUTE> E9 51 51 51 C3.A9 8B.4A
829 <e WITH CIRCUMFLEX> EA 52 52 52 C3.AA 8B.51
830 <e WITH DIAERESIS> EB 53 53 53 C3.AB 8B.52
831 <e WITH GRAVE> E8 54 54 54 C3.A8 8B.49
832 <i WITH ACUTE> ED 55 55 55 C3.AD 8B.54
833 <i WITH CIRCUMFLEX> EE 56 56 56 C3.AE 8B.55
834 <i WITH DIAERESIS> EF 57 57 57 C3.AF 8B.56
835 <i WITH GRAVE> EC 58 58 58 C3.AC 8B.53
836 <SMALL LETTER SHARP S> DF 59 59 59 C3.9F 8A.73
837 ! 21 5A 5A 5A 21 5A
838 $ 24 5B 5B 5B 24 5B
839 * 2A 5C 5C 5C 2A 5C
840 ) 29 5D 5D 5D 29 5D
841 ; 3B 5E 5E 5E 3B 5E
842 ^ 5E B0 5F 6A 5E 5F ** ##
843 - 2D 60 60 60 2D 60
844 / 2F 61 61 61 2F 61
845 <A WITH CIRCUMFLEX> C2 62 62 62 C3.82 8A.43
846 <A WITH DIAERESIS> C4 63 63 63 C3.84 8A.45
847 <A WITH GRAVE> C0 64 64 64 C3.80 8A.41
848 <A WITH ACUTE> C1 65 65 65 C3.81 8A.42
849 <A WITH TILDE> C3 66 66 66 C3.83 8A.44
850 <A WITH RING ABOVE> C5 67 67 67 C3.85 8A.46
851 <C WITH CEDILLA> C7 68 68 68 C3.87 8A.48
852 <N WITH TILDE> D1 69 69 69 C3.91 8A.58
853 <BROKEN BAR> A6 6A 6A D0 C2.A6 80.47 ##
854 , 2C 6B 6B 6B 2C 6B
855 % 25 6C 6C 6C 25 6C
856 _ 5F 6D 6D 6D 5F 6D
857 > 3E 6E 6E 6E 3E 6E
858 ? 3F 6F 6F 6F 3F 6F
859 <o WITH STROKE> F8 70 70 70 C3.B8 8B.67
860 <E WITH ACUTE> C9 71 71 71 C3.89 8A.4A
861 <E WITH CIRCUMFLEX> CA 72 72 72 C3.8A 8A.51
862 <E WITH DIAERESIS> CB 73 73 73 C3.8B 8A.52
863 <E WITH GRAVE> C8 74 74 74 C3.88 8A.49
864 <I WITH ACUTE> CD 75 75 75 C3.8D 8A.54
865 <I WITH CIRCUMFLEX> CE 76 76 76 C3.8E 8A.55
866 <I WITH DIAERESIS> CF 77 77 77 C3.8F 8A.56
867 <I WITH GRAVE> CC 78 78 78 C3.8C 8A.53
868 ` 60 79 79 4A 60 79 ##
869 : 3A 7A 7A 7A 3A 7A
870 # 23 7B 7B 7B 23 7B
871 @ 40 7C 7C 7C 40 7C
872 ' 27 7D 7D 7D 27 7D
873 = 3D 7E 7E 7E 3D 7E
874 " 22 7F 7F 7F 22 7F
875 <O WITH STROKE> D8 80 80 80 C3.98 8A.67
876 a 61 81 81 81 61 81
877 b 62 82 82 82 62 82
878 c 63 83 83 83 63 83
879 d 64 84 84 84 64 84
880 e 65 85 85 85 65 85
881 f 66 86 86 86 66 86
882 g 67 87 87 87 67 87
883 h 68 88 88 88 68 88
884 i 69 89 89 89 69 89
885 <LEFT POINTING GUILLEMET> AB 8A 8A 8A C2.AB 80.52
886 <RIGHT POINTING GUILLEMET> BB 8B 8B 8B C2.BB 80.6A
887 <SMALL LETTER eth> F0 8C 8C 8C C3.B0 8B.57
888 <y WITH ACUTE> FD 8D 8D 8D C3.BD 8B.71
889 <SMALL LETTER thorn> FE 8E 8E 8E C3.BE 8B.72
890 <PLUS-OR-MINUS SIGN> B1 8F 8F 8F C2.B1 80.58
891 <DEGREE SIGN> B0 90 90 90 C2.B0 80.57
892 j 6A 91 91 91 6A 91
893 k 6B 92 92 92 6B 92
894 l 6C 93 93 93 6C 93
895 m 6D 94 94 94 6D 94
896 n 6E 95 95 95 6E 95
897 o 6F 96 96 96 6F 96
898 p 70 97 97 97 70 97
899 q 71 98 98 98 71 98
900 r 72 99 99 99 72 99
901 <FEMININE ORDINAL> AA 9A 9A 9A C2.AA 80.51
902 <MASC. ORDINAL INDICATOR> BA 9B 9B 9B C2.BA 80.69
903 <SMALL LIGATURE ae> E6 9C 9C 9C C3.A6 8B.47
904 <CEDILLA> B8 9D 9D 9D C2.B8 80.67
905 <CAPITAL LIGATURE AE> C6 9E 9E 9E C3.86 8A.47
906 <CURRENCY SIGN> A4 9F 9F 9F C2.A4 80.45
907 <MICRO SIGN> B5 A0 A0 A0 C2.B5 80.64
908 ~ 7E A1 A1 FF 7E A1 ##
909 s 73 A2 A2 A2 73 A2
910 t 74 A3 A3 A3 74 A3
911 u 75 A4 A4 A4 75 A4
912 v 76 A5 A5 A5 76 A5
913 w 77 A6 A6 A6 77 A6
914 x 78 A7 A7 A7 78 A7
915 y 79 A8 A8 A8 79 A8
916 z 7A A9 A9 A9 7A A9
917 <INVERTED "!" > A1 AA AA AA C2.A1 80.42
918 <INVERTED QUESTION MARK> BF AB AB AB C2.BF 80.73
919 <CAPITAL LETTER ETH> D0 AC AC AC C3.90 8A.57
920 [ 5B BA AD BB 5B AD ** ##
921 <CAPITAL LETTER THORN> DE AE AE AE C3.9E 8A.72
922 <REGISTERED TRADE MARK> AE AF AF AF C2.AE 80.55
923 <NOT SIGN> AC 5F B0 BA C2.AC 80.53 ** ##
924 <POUND SIGN> A3 B1 B1 B1 C2.A3 80.44
925 <YEN SIGN> A5 B2 B2 B2 C2.A5 80.46
926 <MIDDLE DOT> B7 B3 B3 B3 C2.B7 80.66
927 <COPYRIGHT SIGN> A9 B4 B4 B4 C2.A9 80.4A
928 <SECTION SIGN> A7 B5 B5 B5 C2.A7 80.48
929 <PARAGRAPH SIGN> B6 B6 B6 B6 C2.B6 80.65
930 <FRACTION ONE QUARTER> BC B7 B7 B7 C2.BC 80.70
931 <FRACTION ONE HALF> BD B8 B8 B8 C2.BD 80.71
932 <FRACTION THREE QUARTERS> BE B9 B9 B9 C2.BE 80.72
933 <Y WITH ACUTE> DD AD BA AD C3.9D 8A.71 ** ##
934 <DIAERESIS> A8 BD BB 79 C2.A8 80.49 ** ##
935 <MACRON> AF BC BC A1 C2.AF 80.56 ##
936 ] 5D BB BD BD 5D BD **
937 <ACUTE ACCENT> B4 BE BE BE C2.B4 80.63
938 <MULTIPLICATION SIGN> D7 BF BF BF C3.97 8A.66
939 { 7B C0 C0 FB 7B C0 ##
940 A 41 C1 C1 C1 41 C1
941 B 42 C2 C2 C2 42 C2
942 C 43 C3 C3 C3 43 C3
943 D 44 C4 C4 C4 44 C4
944 E 45 C5 C5 C5 45 C5
945 F 46 C6 C6 C6 46 C6
946 G 47 C7 C7 C7 47 C7
947 H 48 C8 C8 C8 48 C8
948 I 49 C9 C9 C9 49 C9
949 <SOFT HYPHEN> AD CA CA CA C2.AD 80.54
950 <o WITH CIRCUMFLEX> F4 CB CB CB C3.B4 8B.63
951 <o WITH DIAERESIS> F6 CC CC CC C3.B6 8B.65
952 <o WITH GRAVE> F2 CD CD CD C3.B2 8B.59
953 <o WITH ACUTE> F3 CE CE CE C3.B3 8B.62
954 <o WITH TILDE> F5 CF CF CF C3.B5 8B.64
955 } 7D D0 D0 FD 7D D0 ##
956 J 4A D1 D1 D1 4A D1
957 K 4B D2 D2 D2 4B D2
958 L 4C D3 D3 D3 4C D3
959 M 4D D4 D4 D4 4D D4
960 N 4E D5 D5 D5 4E D5
961 O 4F D6 D6 D6 4F D6
962 P 50 D7 D7 D7 50 D7
963 Q 51 D8 D8 D8 51 D8
964 R 52 D9 D9 D9 52 D9
965 <SUPERSCRIPT ONE> B9 DA DA DA C2.B9 80.68
966 <u WITH CIRCUMFLEX> FB DB DB DB C3.BB 8B.6A
967 <u WITH DIAERESIS> FC DC DC DC C3.BC 8B.70
968 <u WITH GRAVE> F9 DD DD C0 C3.B9 8B.68 ##
969 <u WITH ACUTE> FA DE DE DE C3.BA 8B.69
970 <y WITH DIAERESIS> FF DF DF DF C3.BF 8B.73
971 \ 5C E0 E0 BC 5C E0 ##
972 <DIVISION SIGN> F7 E1 E1 E1 C3.B7 8B.66
973 S 53 E2 E2 E2 53 E2
974 T 54 E3 E3 E3 54 E3
975 U 55 E4 E4 E4 55 E4
976 V 56 E5 E5 E5 56 E5
977 W 57 E6 E6 E6 57 E6
978 X 58 E7 E7 E7 58 E7
979 Y 59 E8 E8 E8 59 E8
980 Z 5A E9 E9 E9 5A E9
981 <SUPERSCRIPT TWO> B2 EA EA EA C2.B2 80.59
982 <O WITH CIRCUMFLEX> D4 EB EB EB C3.94 8A.63
983 <O WITH DIAERESIS> D6 EC EC EC C3.96 8A.65
984 <O WITH GRAVE> D2 ED ED ED C3.92 8A.59
985 <O WITH ACUTE> D3 EE EE EE C3.93 8A.62
986 <O WITH TILDE> D5 EF EF EF C3.95 8A.64
987 0 30 F0 F0 F0 30 F0
988 1 31 F1 F1 F1 31 F1
989 2 32 F2 F2 F2 32 F2
990 3 33 F3 F3 F3 33 F3
991 4 34 F4 F4 F4 34 F4
992 5 35 F5 F5 F5 35 F5
993 6 36 F6 F6 F6 36 F6
994 7 37 F7 F7 F7 37 F7
995 8 38 F8 F8 F8 38 F8
996 9 39 F9 F9 F9 39 F9
997 <SUPERSCRIPT THREE> B3 FA FA FA C2.B3 80.62
998 <U WITH CIRCUMFLEX> DB FB FB DD C3.9B 8A.6A ##
999 <U WITH DIAERESIS> DC FC FC FC C3.9C 8A.70
1000 <U WITH GRAVE> D9 FD FD E0 C3.99 8A.68 ##
1001 <U WITH ACUTE> DA FE FE FE C3.9A 8A.69
1002 <APC> 9F FF FF 5F C2.9F FF ##
d396a558 1003
4d2ca8b5 1004=head1 IDENTIFYING CHARACTER CODE SETS
d396a558 1005
4d2ca8b5
KW
1006It is possible to determine which character set you are operating under.
1007But first you need to be really really sure you need to do this. Your
1008code will be simpler and probably just as portable if you don't have
1009to test the character set and do different things, depending. There are
1010actually only very few circumstances where it's not easy to write
1011straight-line code portable to all character sets. See
1012L<perluniintro/Unicode and EBCDIC> for how to portably specify
1013characters.
d396a558 1014
4d2ca8b5
KW
1015But there are some cases where you may want to know which character set
1016you are running under. One possible example is doing
1017L<sorting|/SORTING> in inner loops where performance is critical.
d396a558 1018
4d2ca8b5
KW
1019To determine if you are running under ASCII or EBCDIC, you can use the
1020return value of C<ord()> or C<chr()> to test one or more character
1021values. For example:
d396a558 1022
4d2ca8b5
KW
1023 $is_ascii = "A" eq chr(65);
1024 $is_ebcdic = "A" eq chr(193);
1025 $is_ascii = ord("A") == 65;
1026 $is_ebcdic = ord("A") == 193;
d396a558 1027
4d2ca8b5
KW
1028There's even less need to distinguish between EBCDIC code pages, but to
1029do so try looking at one or more of the characters that differ between
1030them.
d396a558 1031
84f709e7
JH
1032 $is_ascii = ord('[') == 91;
1033 $is_ebcdic_37 = ord('[') == 186;
1034 $is_ebcdic_1047 = ord('[') == 173;
1035 $is_ebcdic_POSIX_BC = ord('[') == 187;
d396a558
JH
1036
1037However, it would be unwise to write tests such as:
1038
84f709e7
JH
1039 $is_ascii = "\r" ne chr(13); # WRONG
1040 $is_ascii = "\n" ne chr(10); # ILL ADVISED
d396a558 1041
4d2ca8b5
KW
1042Obviously the first of these will fail to distinguish most ASCII
1043platforms from either a CCSID 0037, a 1047, or a POSIX-BC EBCDIC
1044platform since S<C<"\r" eq chr(13)>> under all of those coded character
1045sets. But note too that because C<"\n"> is C<chr(13)> and C<"\r"> is
1046C<chr(10)> on old Macintosh (which is an ASCII platform) the second
1047C<$is_ascii> test will lead to trouble there.
d396a558 1048
eaf8b9b9 1049To determine whether or not perl was built under an EBCDIC
d396a558
JH
1050code page you can use the Config module like so:
1051
1052 use Config;
84f709e7 1053 $is_ebcdic = $Config{'ebcdic'} eq 'define';
d396a558
JH
1054
1055=head1 CONVERSIONS
1056
d5924ca6
KW
1057=head2 C<utf8::unicode_to_native()> and C<utf8::native_to_unicode()>
1058
1059These functions take an input numeric code point in one encoding and
1060return what its equivalent value is in the other.
1061
4d2ca8b5
KW
1062See L<utf8>.
1063
1e054b24
PP
1064=head2 tr///
1065
eaf8b9b9 1066In order to convert a string of characters from one character set to
d396a558 1067another a simple list of numbers, such as in the right columns in the
4d2ca8b5 1068above table, along with Perl's C<tr///> operator is all that is needed.
5f26d5fd 1069The data in the table are in ASCII/Latin1 order, hence the EBCDIC columns
eaf8b9b9 1070provide easy-to-use ASCII/Latin1 to EBCDIC operations that are also easily
d396a558
JH
1071reversed.
1072
5f26d5fd 1073For example, to convert ASCII/Latin1 to code page 037 take the output of the
4d2ca8b5
KW
1074second numbers column from the output of recipe 2 (modified to add
1075C<"\"> characters), and use it in C<tr///> like so:
d396a558 1076
eaf8b9b9 1077 $cp_037 =
5f26d5fd
KW
1078 '\x00\x01\x02\x03\x37\x2D\x2E\x2F\x16\x05\x25\x0B\x0C\x0D\x0E\x0F' .
1079 '\x10\x11\x12\x13\x3C\x3D\x32\x26\x18\x19\x3F\x27\x1C\x1D\x1E\x1F' .
1080 '\x40\x5A\x7F\x7B\x5B\x6C\x50\x7D\x4D\x5D\x5C\x4E\x6B\x60\x4B\x61' .
1081 '\xF0\xF1\xF2\xF3\xF4\xF5\xF6\xF7\xF8\xF9\x7A\x5E\x4C\x7E\x6E\x6F' .
1082 '\x7C\xC1\xC2\xC3\xC4\xC5\xC6\xC7\xC8\xC9\xD1\xD2\xD3\xD4\xD5\xD6' .
1083 '\xD7\xD8\xD9\xE2\xE3\xE4\xE5\xE6\xE7\xE8\xE9\xBA\xE0\xBB\xB0\x6D' .
1084 '\x79\x81\x82\x83\x84\x85\x86\x87\x88\x89\x91\x92\x93\x94\x95\x96' .
1085 '\x97\x98\x99\xA2\xA3\xA4\xA5\xA6\xA7\xA8\xA9\xC0\x4F\xD0\xA1\x07' .
1086 '\x20\x21\x22\x23\x24\x15\x06\x17\x28\x29\x2A\x2B\x2C\x09\x0A\x1B' .
1087 '\x30\x31\x1A\x33\x34\x35\x36\x08\x38\x39\x3A\x3B\x04\x14\x3E\xFF' .
1088 '\x41\xAA\x4A\xB1\x9F\xB2\x6A\xB5\xBD\xB4\x9A\x8A\x5F\xCA\xAF\xBC' .
1089 '\x90\x8F\xEA\xFA\xBE\xA0\xB6\xB3\x9D\xDA\x9B\x8B\xB7\xB8\xB9\xAB' .
1090 '\x64\x65\x62\x66\x63\x67\x9E\x68\x74\x71\x72\x73\x78\x75\x76\x77' .
1091 '\xAC\x69\xED\xEE\xEB\xEF\xEC\xBF\x80\xFD\xFE\xFB\xFC\xAD\xAE\x59' .
1092 '\x44\x45\x42\x46\x43\x47\x9C\x48\x54\x51\x52\x53\x58\x55\x56\x57' .
1093 '\x8C\x49\xCD\xCE\xCB\xCF\xCC\xE1\x70\xDD\xDE\xDB\xDC\x8D\x8E\xDF';
d396a558
JH
1094
1095 my $ebcdic_string = $ascii_string;
5f26d5fd 1096 eval '$ebcdic_string =~ tr/\000-\377/' . $cp_037 . '/';
d396a558 1097
0be03469 1098To convert from EBCDIC 037 to ASCII just reverse the order of the tr///
d396a558
JH
1099arguments like so:
1100
1101 my $ascii_string = $ebcdic_string;
5f26d5fd
KW
1102 eval '$ascii_string =~ tr/' . $cp_037 . '/\000-\377/';
1103
1104Similarly one could take the output of the third numbers column from recipe 2
1105to obtain a C<$cp_1047> table. The fourth numbers column of the output from
1106recipe 2 could provide a C<$cp_posix_bc> table suitable for transcoding as
1107well.
d5d9880c 1108
5f26d5fd
KW
1109If you wanted to see the inverse tables, you would first have to sort on the
1110desired numbers column as in recipes 4, 5 or 6, then take the output of the
1111first numbers column.
1e054b24
PP
1112
1113=head2 iconv
d396a558 1114
d5d9880c 1115XPG operability often implies the presence of an I<iconv> utility
d396a558
JH
1116available from the shell or from the C library. Consult your system's
1117documentation for information on iconv.
1118
4d2ca8b5 1119On OS/390 or z/OS see the L<iconv(1)> manpage. One way to invoke the C<iconv>
d396a558
JH
1120shell utility from within perl would be to:
1121
395f5a0c 1122 # OS/390 or z/OS example
84f709e7 1123 $ascii_data = `echo '$ebcdic_data'| iconv -f IBM-1047 -t ISO8859-1`
d396a558
JH
1124
1125or the inverse map:
1126
395f5a0c 1127 # OS/390 or z/OS example
84f709e7 1128 $ebcdic_data = `echo '$ascii_data'| iconv -f ISO8859-1 -t IBM-1047`
d396a558 1129
4d2ca8b5 1130For other Perl-based conversion options see the C<Convert::*> modules on CPAN.
d396a558 1131
1e054b24
PP
1132=head2 C RTL
1133
4d2ca8b5 1134The OS/390 and z/OS C run-time libraries provide C<_atoe()> and C<_etoa()> functions.
1e054b24 1135
d396a558
JH
1136=head1 OPERATOR DIFFERENCES
1137
eaf8b9b9 1138The C<..> range operator treats certain character ranges with
2bbc8d55
SP
1139care on EBCDIC platforms. For example the following array
1140will have twenty six elements on either an EBCDIC platform
1141or an ASCII platform:
d396a558 1142
84f709e7 1143 @alphabet = ('A'..'Z'); # $#alphabet == 25
d396a558
JH
1144
1145The bitwise operators such as & ^ | may return different results
4d2ca8b5 1146when operating on string or character data in a Perl program running
2bbc8d55 1147on an EBCDIC platform than when run on an ASCII platform. Here is
d396a558
JH
1148an example adapted from the one in L<perlop>:
1149
1150 # EBCDIC-based examples
84f709e7 1151 print "j p \n" ^ " a h"; # prints "JAPH\n"
eaf8b9b9 1152 print "JA" | " ph\n"; # prints "japh\n"
84f709e7
JH
1153 print "JAPH\nJunk" & "\277\277\277\277\277"; # prints "japh\n";
1154 print 'p N$' ^ " E<H\n"; # prints "Perl\n";
d396a558
JH
1155
1156An interesting property of the 32 C0 control characters
1157in the ASCII table is that they can "literally" be constructed
4d2ca8b5 1158as control characters in Perl, e.g. C<(chr(0)> eq C<\c@>)>
c72e675e 1159C<(chr(1)> eq C<\cA>)>, and so on. Perl on EBCDIC platforms has been
4d2ca8b5 1160ported to take C<\c@> to C<chr(0)> and C<\cA> to C<chr(1)>, etc. as well, but the
2bd1cbf6 1161characters that result depend on which code page you are
2c09a866
KW
1162using. The table below uses the standard acronyms for the controls.
1163The POSIX-BC and 1047 sets are
eaf8b9b9 1164identical throughout this range and differ from the 0037 set at only
4d2ca8b5 1165one spot (21 decimal). Note that the line terminator character
eaf8b9b9
KW
1166may be generated by C<\cJ> on ASCII platforms but by C<\cU> on 1047 or POSIX-BC
1167platforms and cannot be generated as a C<"\c.letter."> control character on
2c09a866
KW
11680037 platforms. Note also that C<\c\> cannot be the final element in a string
1169or regex, as it will absorb the terminator. But C<\c\I<X>> is a C<FILE
1170SEPARATOR> concatenated with I<X> for all I<X>.
2bd1cbf6
KW
1171The outlier C<\c?> on ASCII, which yields a non-C0 control C<DEL>,
1172yields the outlier control C<APC> on EBCDIC, the one that isn't in the
aae773bb
KW
1173block of contiguous controls. Note that a subtlety of this is that
1174C<\c?> on ASCII platforms is an ASCII character, while it isn't
1175equivalent to any ASCII character in EBCDIC platforms.
2c09a866 1176
eaf8b9b9 1177 chr ord 8859-1 0037 1047 && POSIX-BC
c72e675e 1178 -----------------------------------------------------------------------
2c09a866 1179 \c@ 0 <NUL> <NUL> <NUL>
eaf8b9b9 1180 \cA 1 <SOH> <SOH> <SOH>
2c09a866
KW
1181 \cB 2 <STX> <STX> <STX>
1182 \cC 3 <ETX> <ETX> <ETX>
eaf8b9b9
KW
1183 \cD 4 <EOT> <ST> <ST>
1184 \cE 5 <ENQ> <HT> <HT>
1185 \cF 6 <ACK> <SSA> <SSA>
1186 \cG 7 <BEL> <DEL> <DEL>
1187 \cH 8 <BS> <EPA> <EPA>
1188 \cI 9 <HT> <RI> <RI>
1189 \cJ 10 <LF> <SS2> <SS2>
2c09a866 1190 \cK 11 <VT> <VT> <VT>
eaf8b9b9
KW
1191 \cL 12 <FF> <FF> <FF>
1192 \cM 13 <CR> <CR> <CR>
2c09a866
KW
1193 \cN 14 <SO> <SO> <SO>
1194 \cO 15 <SI> <SI> <SI>
eaf8b9b9 1195 \cP 16 <DLE> <DLE> <DLE>
2c09a866
KW
1196 \cQ 17 <DC1> <DC1> <DC1>
1197 \cR 18 <DC2> <DC2> <DC2>
eaf8b9b9
KW
1198 \cS 19 <DC3> <DC3> <DC3>
1199 \cT 20 <DC4> <OSC> <OSC>
8d725451 1200 \cU 21 <NAK> <NEL> <LF> **
2c09a866 1201 \cV 22 <SYN> <BS> <BS>
eaf8b9b9 1202 \cW 23 <ETB> <ESA> <ESA>
2c09a866
KW
1203 \cX 24 <CAN> <CAN> <CAN>
1204 \cY 25 <EOM> <EOM> <EOM>
eaf8b9b9
KW
1205 \cZ 26 <SUB> <PU2> <PU2>
1206 \c[ 27 <ESC> <SS3> <SS3>
2c09a866
KW
1207 \c\X 28 <FS>X <FS>X <FS>X
1208 \c] 29 <GS> <GS> <GS>
1209 \c^ 30 <RS> <RS> <RS>
1210 \c_ 31 <US> <US> <US>
2bd1cbf6
KW
1211 \c? * <DEL> <APC> <APC>
1212
1213C<*> Note: C<\c?> maps to ordinal 127 (C<DEL>) on ASCII platforms, but
1214since ordinal 127 is a not a control character on EBCDIC machines,
4d2ca8b5
KW
1215C<\c?> instead maps on them to C<APC>, which is 255 in 0037 and 1047,
1216and 95 in POSIX-BC.
d396a558
JH
1217
1218=head1 FUNCTION DIFFERENCES
1219
1220=over 8
1221
4d2ca8b5 1222=item C<chr()>
d396a558 1223
4d2ca8b5 1224C<chr()> must be given an EBCDIC code number argument to yield a desired
2bbc8d55 1225character return value on an EBCDIC platform. For example:
d396a558 1226
84f709e7 1227 $CAPITAL_LETTER_A = chr(193);
d396a558 1228
4d2ca8b5
KW
1229The largest code point that is representable in UTF-EBCDIC is
1230U+7FFF_FFFF. If you do C<chr()> on a larger value, a runtime error
1231(similar to division by 0) will happen.
1232
1233=item C<ord()>
d396a558 1234
4d2ca8b5 1235C<ord()> will return EBCDIC code number values on an EBCDIC platform.
d396a558
JH
1236For example:
1237
84f709e7 1238 $the_number_193 = ord("A");
d396a558 1239
4d2ca8b5 1240=item C<pack()>
d396a558 1241
4d2ca8b5
KW
1242
1243The C<"c"> and C<"C"> templates for C<pack()> are dependent upon character set
d396a558
JH
1244encoding. Examples of usage on EBCDIC include:
1245
1246 $foo = pack("CCCC",193,194,195,196);
1247 # $foo eq "ABCD"
84f709e7 1248 $foo = pack("C4",193,194,195,196);
d396a558
JH
1249 # same thing
1250
1251 $foo = pack("ccxxcc",193,194,195,196);
1252 # $foo eq "AB\0\0CD"
1253
4d2ca8b5
KW
1254The C<"U"> template has been ported to mean "Unicode" on all platforms so
1255that
1256
1257 pack("U", 65) eq 'A'
1258
1259is true on all platforms. If you want native code points for the low
1260256, use the C<"W"> template. This means that the equivalences
1261
1262 pack("W", ord($character)) eq $character
1263 unpack("W", $character) == ord $character
1264
1265will hold.
1266
1267The largest code point that is representable in UTF-EBCDIC is
1268U+7FFF_FFFF. If you try to pack a larger value into a character, a
1269runtime error (similar to division by 0) will happen.
1270
1271=item C<print()>
d396a558
JH
1272
1273One must be careful with scalars and strings that are passed to
1274print that contain ASCII encodings. One common place
1275for this to occur is in the output of the MIME type header for
4d2ca8b5 1276CGI script writing. For example, many Perl programming guides
d396a558
JH
1277recommend something similar to:
1278
eaf8b9b9 1279 print "Content-type:\ttext/html\015\012\015\012";
d396a558
JH
1280 # this may be wrong on EBCDIC
1281
4d2ca8b5 1282You can instead write
d396a558 1283
5f26d5fd 1284 print "Content-type:\ttext/html\r\n\r\n"; # OK for DGW et al
d396a558 1285
4d2ca8b5
KW
1286and have it work portably.
1287
d396a558 1288That is because the translation from EBCDIC to ASCII is done
4d2ca8b5 1289by the web server in this case. Consult your web server's documentation for
d396a558
JH
1290further details.
1291
4d2ca8b5 1292=item C<printf()>
d396a558
JH
1293
1294The formats that can convert characters to numbers and vice versa
1295will be different from their ASCII counterparts when executed
2bbc8d55 1296on an EBCDIC platform. Examples include:
d396a558
JH
1297
1298 printf("%c%c%c",193,194,195); # prints ABC
1299
4d2ca8b5 1300=item C<sort()>
d396a558 1301
eaf8b9b9 1302EBCDIC sort results may differ from ASCII sort results especially for
4d2ca8b5 1303mixed case strings. This is discussed in more detail L<below|/SORTING>.
d396a558 1304
4d2ca8b5 1305=item C<sprintf()>
d396a558 1306
4d2ca8b5 1307See the discussion of C<L</printf()>> above. An example of the use
d396a558
JH
1308of sprintf would be:
1309
84f709e7 1310 $CAPITAL_LETTER_A = sprintf("%c",193);
d396a558 1311
4d2ca8b5 1312=item C<unpack()>
d396a558 1313
4d2ca8b5 1314See the discussion of C<L</pack()>> above.
d396a558
JH
1315
1316=back
1317
4d2ca8b5
KW
1318Note that it is possible to write portable code for these by specifying
1319things in Unicode numbers, and using a conversion function:
1320
1321 printf("%c",utf8::unicode_to_native(65)); # prints A on all
1322 # platforms
1323 print utf8::native_to_unicode(ord("A")); # Likewise, prints 65
1324
1325See L<perluniintro/Unicode and EBCDIC> and L</CONVERSIONS>
1326for other options.
1327
d396a558
JH
1328=head1 REGULAR EXPRESSION DIFFERENCES
1329
4d2ca8b5
KW
1330You can write your regular expressions just like someone on an ASCII
1331platform would do. But keep in mind that using octal or hex notation to
1332specify a particular code point will give you the character that the
1333EBCDIC code page natively maps to it. (This is also true of all
1334double-quoted strings.) If you want to write portably, just use the
1335C<\N{U+...}> notation everywhere where you would have used C<\x{...}>,
1336and don't use octal notation at all.
1337
1338Starting in Perl v5.22, this applies to ranges in bracketed character
1339classes. If you say, for example, C<qr/[\N{U+20}-\N{U+7F}]/>, it means
1340the characters C<\N{U+20}>, C<\N{U+21}>, ..., C<\N{U+7F}>. This range
1341is all the printable characters that the ASCII character set contains.
1342
1343Prior to v5.22, you couldn't specify any ranges portably, except
1344(starting in Perl v5.5.3) all subsets of the C<[A-Z]> and C<[a-z]>
1345ranges are specially coded to not pick up gap characters. For example,
1346characters such as "E<ocirc>" (C<o WITH CIRCUMFLEX>) that lie between
1347"I" and "J" would not be matched by the regular expression range
1348C</[H-K]/>. But if either of the range end points is explicitly numeric
1349(and neither is specified by C<\N{U+...}>), the gap characters are
1350matched:
1351
1352 /[\x89-\x91]/
1353
1354will match C<\x8e>, even though C<\x89> is "i" and C<\x91 > is "j",
1355and C<\x8e> is a gap character, from the alphabetic viewpoint.
1356
1357Another construct to be wary of is the inappropriate use of hex (unless
1358you use C<\N{U+...}>) or
d396a558
JH
1359octal constants in regular expressions. Consider the following
1360set of subs:
1361
1362 sub is_c0 {
1363 my $char = substr(shift,0,1);
1364 $char =~ /[\000-\037]/;
1365 }
1366
1367 sub is_print_ascii {
1368 my $char = substr(shift,0,1);
1369 $char =~ /[\040-\176]/;
1370 }
1371
1372 sub is_delete {
1373 my $char = substr(shift,0,1);
1374 $char eq "\177";
1375 }
1376
1377 sub is_c1 {
1378 my $char = substr(shift,0,1);
1379 $char =~ /[\200-\237]/;
1380 }
1381
10c526cf 1382 sub is_latin_1 { # But not ASCII; not C1
d396a558
JH
1383 my $char = substr(shift,0,1);
1384 $char =~ /[\240-\377]/;
1385 }
1386
4d2ca8b5
KW
1387These are valid only on ASCII platforms. Starting in Perl v5.22, simply
1388changing the octal constants to equivalent C<\N{U+...}> values makes
1389them portable:
1390
1391 sub is_c0 {
1392 my $char = substr(shift,0,1);
1393 $char =~ /[\N{U+00}-\N{U+1F}]/;
1394 }
1395
1396 sub is_print_ascii {
1397 my $char = substr(shift,0,1);
1398 $char =~ /[\N{U+20}-\N{U+7E}]/;
1399 }
1400
1401 sub is_delete {
1402 my $char = substr(shift,0,1);
1403 $char eq "\N{U+7F}";
1404 }
1405
1406 sub is_c1 {
1407 my $char = substr(shift,0,1);
1408 $char =~ /[\N{U+80}-\N{U+9F}]/;
1409 }
1410
1411 sub is_latin_1 { # But not ASCII; not C1
1412 my $char = substr(shift,0,1);
1413 $char =~ /[\N{U+A0}-\N{U+FF}]/;
1414 }
1415
1416And here are some alternative portable ways to write them:
d396a558
JH
1417
1418 sub Is_c0 {
1419 my $char = substr(shift,0,1);
f11f9c4c
KW
1420 return $char =~ /[[:cntrl:]]/a && ! Is_delete($char);
1421
1422 # Alternatively:
1423 # return $char =~ /[[:cntrl:]]/
1424 # && $char =~ /[[:ascii:]]/
1425 # && ! Is_delete($char);
d396a558
JH
1426 }
1427
1428 sub Is_print_ascii {
1429 my $char = substr(shift,0,1);
10c526cf 1430
f11f9c4c 1431 return $char =~ /[[:print:]]/a;
10c526cf
KW
1432
1433 # Alternatively:
f11f9c4c
KW
1434 # return $char =~ /[[:print:]]/ && $char =~ /[[:ascii:]]/;
1435
1436 # Or
10c526cf
KW
1437 # return $char
1438 # =~ /[ !"\#\$%&'()*+,\-.\/0-9:;<=>?\@A-Z[\\\]^_`a-z{|}~]/;
d396a558
JH
1439 }
1440
1441 sub Is_delete {
1442 my $char = substr(shift,0,1);
10c526cf 1443 return utf8::native_to_unicode(ord $char) == 0x7F;
d396a558
JH
1444 }
1445
1446 sub Is_c1 {
10c526cf 1447 use feature 'unicode_strings';
d396a558 1448 my $char = substr(shift,0,1);
10c526cf 1449 return $char =~ /[[:cntrl:]]/ && $char !~ /[[:ascii:]]/;
d396a558
JH
1450 }
1451
10c526cf
KW
1452 sub Is_latin_1 { # But not ASCII; not C1
1453 use feature 'unicode_strings';
d396a558 1454 my $char = substr(shift,0,1);
10c526cf 1455 return ord($char) < 256
4d2ca8b5
KW
1456 && $char !~ /[[:ascii:]]/
1457 && $char !~ /[[:cntrl:]]/;
d396a558
JH
1458 }
1459
10c526cf 1460Another way to write C<Is_latin_1()> would be
d396a558
JH
1461to use the characters in the range explicitly:
1462
1463 sub Is_latin_1 {
1464 my $char = substr(shift,0,1);
f11f9c4c
KW
1465 $char =~ /[ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏ]
1466 [ÐÑÒÓÔÕÖ×ØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ]/x;
d396a558
JH
1467 }
1468
eaf8b9b9 1469Although that form may run into trouble in network transit (due to the
4d2ca8b5
KW
1470presence of 8 bit characters) or on non ISO-Latin character sets. But
1471it does allow C<Is_c1> to be rewritten so it works on Perls that don't
1472have C<'unicode_strings'> (earlier than v5.14):
1473
1474 sub Is_latin_1 { # But not ASCII; not C1
1475 my $char = substr(shift,0,1);
1476 return ord($char) < 256
1477 && $char !~ /[[:ascii:]]/
1478 && ! Is_latin1($char);
1479 }
d396a558
JH
1480
1481=head1 SOCKETS
1482
1483Most socket programming assumes ASCII character encodings in network
1484byte order. Exceptions can include CGI script writing under a
1485host web server where the server may take care of translation for you.
1486Most host web servers convert EBCDIC data to ISO-8859-1 or Unicode on
1487output.
1488
1489=head1 SORTING
1490
8a50e6a3 1491One big difference between ASCII-based character sets and EBCDIC ones
4d2ca8b5
KW
1492are the relative positions of the characters when sorted in native
1493order. Of most concern are the upper- and lowercase letters, the
1494digits, and the underscore (C<"_">). On ASCII platforms the native sort
1495order has the digits come before the uppercase letters which come before
1496the underscore which comes before the lowercase letters. On EBCDIC, the
1497underscore comes first, then the lowercase letters, then the uppercase
1498ones, and the digits last. If sorted on an ASCII-based platform, the
8a50e6a3
FC
1499two-letter abbreviation for a physician comes before the two letter
1500abbreviation for drive; that is:
d396a558 1501
c72e675e 1502 @sorted = sort(qw(Dr. dr.)); # @sorted holds ('Dr.','dr.') on ASCII,
84f709e7 1503 # but ('dr.','Dr.') on EBCDIC
d396a558 1504
8a50e6a3 1505The property of lowercase before uppercase letters in EBCDIC is
d396a558 1506even carried to the Latin 1 EBCDIC pages such as 0037 and 1047.
4d2ca8b5
KW
1507An example would be that "E<Euml>" (C<E WITH DIAERESIS>, 203) comes
1508before "E<euml>" (C<e WITH DIAERESIS>, 235) on an ASCII platform, but
eaf8b9b9 1509the latter (83) comes before the former (115) on an EBCDIC platform.
4d2ca8b5
KW
1510(Astute readers will note that the uppercase version of "E<szlig>"
1511C<SMALL LETTER SHARP S> is simply "SS" and that the upper case versions
1512of "E<yuml>" (small C<y WITH DIAERESIS>) and "E<micro>" (C<MICRO SIGN>)
1513are not in the 0..255 range but are in Unicode, in a Unicode enabled
1514Perl).
d396a558
JH
1515
1516The sort order will cause differences between results obtained on
2bbc8d55 1517ASCII platforms versus EBCDIC platforms. What follows are some suggestions
d396a558
JH
1518on how to deal with these differences.
1519
51b5cecb 1520=head2 Ignore ASCII vs. EBCDIC sort differences.
d396a558
JH
1521
1522This is the least computationally expensive strategy. It may require
1523some user education.
1524
4d2ca8b5 1525=head2 Use a sort helper function
d396a558 1526
4d2ca8b5
KW
1527This is completely general, but the most computationally expensive
1528strategy. Choose one or the other character set and transform to that
1529for every sort comparision. Here's a complete example that transforms
1530to ASCII sort order:
51b5cecb 1531
4d2ca8b5
KW
1532 sub native_to_uni($) {
1533 my $string = shift;
d396a558 1534
4d2ca8b5
KW
1535 # Saves time on an ASCII platform
1536 return $string if ord 'A' == 65;
d396a558 1537
4d2ca8b5
KW
1538 my $output = "";
1539 for my $i (0 .. length($string) - 1) {
1540 $output
1541 .= chr(utf8::native_to_unicode(ord(substr($string, $i, 1))));
1542 }
1543
1544 # Preserve utf8ness of input onto the output, even if it didn't need
1545 # to be utf8
1546 utf8::upgrade($output) if utf8::is_utf8($string);
51b5cecb 1547
4d2ca8b5
KW
1548 return $output;
1549 }
51b5cecb 1550
4d2ca8b5
KW
1551 sub ascii_order { # Sort helper
1552 return native_to_uni($a) cmp native_to_uni($b);
1553 }
d396a558 1554
4d2ca8b5
KW
1555 sort ascii_order @list;
1556
1557=head2 MONO CASE then sort data (for non-digits, non-underscore)
1558
1559If you don't care about where digits and underscore sort to, you can do
1560something like this
1561
1562 sub case_insensitive_order { # Sort helper
1563 return lc($a) cmp lc($b)
1564 }
1565
1566 sort case_insensitive_order @list;
1567
1568If performance is an issue, and you don't care if the output is in the
1569same case as the input, Use C<tr///> to transform to the case most
1570employed within the data. If the data are primarily UPPERCASE
1571non-Latin1, then apply C<tr/[a-z]/[A-Z]/>, and then C<sort()>. If the
1572data are primarily lowercase non Latin1 then apply C<tr/[A-Z]/[a-z]/>
1573before sorting. If the data are primarily UPPERCASE and include Latin-1
1574characters then apply:
1575
1576 tr/[a-z]/[A-Z]/;
1577 tr/[àáâãäåæçèéêëìíîïðñòóôõöøùúûüýþ]/[ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÝÞ/;
1578 s/ß/SS/g;
1579
1580then C<sort()>. If you have a choice, it's better to lowercase things
1581to avoid the problems of the two Latin-1 characters whose uppercase is
1582outside Latin-1: "E<yuml>" (small C<y WITH DIAERESIS>) and "E<micro>"
1583(C<MICRO SIGN>). If you do need to upppercase, you can; with a
1584Unicode-enabled Perl, do:
1585
1586 tr/ÿ/\x{178}/;
1587 tr/µ/\x{39C}/;
d396a558 1588
2bbc8d55 1589=head2 Perform sorting on one type of platform only.
d396a558
JH
1590
1591This strategy can employ a network connection. As such
1592it would be computationally expensive.
1593
395f5a0c 1594=head1 TRANSFORMATION FORMATS
1e054b24 1595
eaf8b9b9
KW
1596There are a variety of ways of transforming data with an intra character set
1597mapping that serve a variety of purposes. Sorting was discussed in the
1598previous section and a few of the other more popular mapping techniques are
1e054b24
PP
1599discussed next.
1600
1601=head2 URL decoding and encoding
d396a558 1602
51b5cecb 1603Note that some URLs have hexadecimal ASCII code points in them in an
eaf8b9b9 1604attempt to overcome character or protocol limitation issues. For example
1e054b24 1605the tilde character is not on every keyboard hence a URL of the form:
d396a558
JH
1606
1607 http://www.pvhp.com/~pvhp/
1608
1609may also be expressed as either of:
1610
1611 http://www.pvhp.com/%7Epvhp/
1612
1613 http://www.pvhp.com/%7epvhp/
1614
4d2ca8b5 1615where 7E is the hexadecimal ASCII code point for "~". Here is an example
f11f9c4c 1616of decoding such a URL in any EBCDIC code page:
d396a558 1617
84f709e7 1618 $url = 'http://www.pvhp.com/%7Epvhp/';
f11f9c4c
KW
1619 $url =~ s/%([0-9a-fA-F]{2})/
1620 pack("c",utf8::unicode_to_native(hex($1)))/xge;
d396a558 1621
eaf8b9b9 1622Conversely, here is a partial solution for the task of encoding such
f11f9c4c 1623a URL in any EBCDIC code page:
1e054b24 1624
84f709e7 1625 $url = 'http://www.pvhp.com/~pvhp/';
eaf8b9b9
KW
1626 # The following regular expression does not address the
1627 # mappings for: ('.' => '%2E', '/' => '%2F', ':' => '%3A')
10c526cf 1628 $url =~ s/([\t "#%&\(\),;<=>\?\@\[\\\]^`{|}~])/
f11f9c4c 1629 sprintf("%%%02X",utf8::native_to_unicode(ord($1)))/xge;
1e054b24 1630
eaf8b9b9 1631where a more complete solution would split the URL into components
1e054b24
PP
1632and apply a full s/// substitution only to the appropriate parts.
1633
1e054b24
PP
1634=head2 uu encoding and decoding
1635
4d2ca8b5
KW
1636The C<u> template to C<pack()> or C<unpack()> will render EBCDIC data in
1637EBCDIC characters equivalent to their ASCII counterparts. For example,
1638the following will print "Yes indeed\n" on either an ASCII or EBCDIC
1639computer:
1e054b24 1640
84f709e7
JH
1641 $all_byte_chrs = '';
1642 for (0..255) { $all_byte_chrs .= chr($_); }
1643 $uuencode_byte_chrs = pack('u', $all_byte_chrs);
210b36aa 1644 ($uu = <<'ENDOFHEREDOC') =~ s/^\s*//gm;
1e054b24
PP
1645 M``$"`P0%!@<("0H+#`T.#Q`1$A,4%187&!D:&QP='A\@(2(C)"4F)R@I*BLL
1646 M+2XO,#$R,S0U-C<X.3H[/#T^/T!!0D-$149'2$E*2TQ-3D]045)35%565UA9
1647 M6EM<75Y?8&%B8V1E9F=H:6IK;&UN;W!Q<G-T=79W>'EZ>WQ]?G^`@8*#A(6&
1648 MAXB)BHN,C8Z/D)&2DY25EI>8F9J;G)V>GZ"AHJ.DI::GJ*FJJZRMKJ^PL;*S
1649 MM+6VM[BYNKN\O;Z_P,'"P\3%QL?(R<K+S,W.S]#1TM/4U=;7V-G:V]S=WM_@
1650 ?X>+CY.7FY^CIZNOL[>[O\/'R\_3U]O?X^?K[_/W^_P``
1651 ENDOFHEREDOC
84f709e7 1652 if ($uuencode_byte_chrs eq $uu) {
1e054b24
PP
1653 print "Yes ";
1654 }
1655 $uudecode_byte_chrs = unpack('u', $uuencode_byte_chrs);
84f709e7 1656 if ($uudecode_byte_chrs eq $all_byte_chrs) {
1e054b24
PP
1657 print "indeed\n";
1658 }
1659
f11f9c4c 1660Here is a very spartan uudecoder that will work on EBCDIC:
1e054b24 1661
84f709e7 1662 #!/usr/local/bin/perl
84f709e7 1663 $_ = <> until ($mode,$file) = /^begin\s*(\d*)\s*(\S*)/;
1e054b24
PP
1664 open(OUT, "> $file") if $file ne "";
1665 while(<>) {
1666 last if /^end/;
1667 next if /[a-z]/;
f11f9c4c
KW
1668 next unless int((((utf8::native_to_unicode(ord()) - 32 ) & 077)
1669 + 2) / 3)
1670 == int(length() / 4);
1e054b24
PP
1671 print OUT unpack("u", $_);
1672 }
1673 close(OUT);
1674 chmod oct($mode), $file;
1675
1676
1677=head2 Quoted-Printable encoding and decoding
1678
8a50e6a3 1679On ASCII-encoded platforms it is possible to strip characters outside of
1e054b24
PP
1680the printable set using:
1681
1682 # This QP encoder works on ASCII only
4d2ca8b5
KW
1683 $qp_string =~ s/([=\x00-\x1F\x80-\xFF])/
1684 sprintf("=%02X",ord($1))/xge;
1e054b24 1685
4d2ca8b5
KW
1686Starting in Perl v5.22, this is trivially changeable to work portably on
1687both ASCII and EBCDIC platforms.
1688
1689 # This QP encoder works on both ASCII and EBCDIC
1690 $qp_string =~ s/([=\N{U+00}-\N{U+1F}\N{U+80}-\N{U+FF}])/
1691 sprintf("=%02X",ord($1))/xge;
1692
1693For earlier Perls, a QP encoder that works on both ASCII and EBCDIC
1694platforms would look somewhat like the following:
1e054b24 1695
f11f9c4c 1696 $delete = utf8::unicode_to_native(ord("\x7F"));
84f709e7 1697 $qp_string =~
f11f9c4c
KW
1698 s/([^[:print:]$delete])/
1699 sprintf("=%02X",utf8::native_to_unicode(ord($1)))/xage;
1e054b24
PP
1700
1701(although in production code the substitutions might be done
f11f9c4c 1702in the EBCDIC branch with the function call and separately in the
4d2ca8b5
KW
1703ASCII branch without the expense of the identity map; in Perl v5.22, the
1704identity map is optimized out so there is no expense, but the
1705alternative above is simpler and is also available in v5.22).
1e054b24
PP
1706
1707Such QP strings can be decoded with:
1708
1709 # This QP decoder is limited to ASCII only
f11f9c4c 1710 $string =~ s/=([[:xdigit:][[:xdigit:])/chr hex $1/ge;
1e054b24
PP
1711 $string =~ s/=[\n\r]+$//;
1712
eaf8b9b9 1713Whereas a QP decoder that works on both ASCII and EBCDIC platforms
f11f9c4c 1714would look somewhat like the following:
1e054b24 1715
f11f9c4c
KW
1716 $string =~ s/=([[:xdigit:][:xdigit:]])/
1717 chr utf8::native_to_unicode(hex $1)/xge;
1e054b24
PP
1718 $string =~ s/=[\n\r]+$//;
1719
c69ca1d4 1720=head2 Caesarean ciphers
1e054b24
PP
1721
1722The practice of shifting an alphabet one or more characters for encipherment
1723dates back thousands of years and was explicitly detailed by Gaius Julius
eaf8b9b9 1724Caesar in his B<Gallic Wars> text. A single alphabet shift is sometimes
1e054b24 1725referred to as a rotation and the shift amount is given as a number $n after
eaf8b9b9
KW
1726the string 'rot' or "rot$n". Rot0 and rot26 would designate identity maps
1727on the 26-letter English version of the Latin alphabet. Rot13 has the
1728interesting property that alternate subsequent invocations are identity maps
1729(thus rot13 is its own non-trivial inverse in the group of 26 alphabet
1730rotations). Hence the following is a rot13 encoder and decoder that will
2bbc8d55 1731work on ASCII and EBCDIC platforms:
1e054b24
PP
1732
1733 #!/usr/local/bin/perl
1734
84f709e7 1735 while(<>){
1e054b24
PP
1736 tr/n-za-mN-ZA-M/a-zA-Z/;
1737 print;
1738 }
1739
1740In one-liner form:
1741
84f709e7 1742 perl -ne 'tr/n-za-mN-ZA-M/a-zA-Z/;print'
1e054b24
PP
1743
1744
1745=head1 Hashing order and checksums
1746
4d2ca8b5
KW
1747Perl deliberately randomizes hash order for security purposes on both
1748ASCII and EBCDIC platforms.
1749
1750EBCDIC checksums will differ for the same file translated into ASCII
1751and vice versa.
1e054b24 1752
d396a558
JH
1753=head1 I18N AND L10N
1754
eaf8b9b9
KW
1755Internationalization (I18N) and localization (L10N) are supported at least
1756in principle even on EBCDIC platforms. The details are system-dependent
4d2ca8b5 1757and discussed under the L<OS ISSUES> section below.
d396a558 1758
8a50e6a3 1759=head1 MULTI-OCTET CHARACTER SETS
d396a558 1760
4d2ca8b5
KW
1761Perl works with UTF-EBCDIC, a multi-byte encoding. In Perls earlier
1762than v5.22, there may be various bugs in this regard.
395f5a0c
PK
1763
1764Legacy multi byte EBCDIC code pages XXX.
d396a558
JH
1765
1766=head1 OS ISSUES
1767
eaf8b9b9 1768There may be a few system-dependent issues
d396a558
JH
1769of concern to EBCDIC Perl programmers.
1770
522b859a 1771=head2 OS/400
51b5cecb 1772
d396a558
JH
1773=over 8
1774
522b859a
JH
1775=item PASE
1776
8a50e6a3
FC
1777The PASE environment is a runtime environment for OS/400 that can run
1778executables built for PowerPC AIX in OS/400; see L<perlos400>. PASE
522b859a
JH
1779is ASCII-based, not EBCDIC-based as the ILE.
1780
d396a558
JH
1781=item IFS access
1782
1783XXX.
1784
1785=back
1786
395f5a0c 1787=head2 OS/390, z/OS
d396a558 1788
51b5cecb
PP
1789Perl runs under Unix Systems Services or USS.
1790
d396a558
JH
1791=over 8
1792
4d2ca8b5
KW
1793=item C<sigaction>
1794
1795C<SA_SIGINFO> can have segmentation faults.
1796
1797=item C<chcp>
51b5cecb 1798
eaf8b9b9 1799B<chcp> is supported as a shell utility for displaying and changing
75cdcc93 1800one's code page. See also L<chcp(1)>.
51b5cecb 1801
d396a558
JH
1802=item dataset access
1803
1804For sequential data set access try:
1805
1806 my @ds_records = `cat //DSNAME`;
1807
1808or:
1809
1810 my @ds_records = `cat //'HLQ.DSNAME'`;
1811
1812See also the OS390::Stdio module on CPAN.
1813
4d2ca8b5 1814=item C<iconv>
51b5cecb 1815
1e054b24 1816B<iconv> is supported as both a shell utility and a C RTL routine.
4d2ca8b5 1817See also the L<iconv(1)> and L<iconv(3)> manual pages.
51b5cecb 1818
d396a558
JH
1819=item locales
1820
4d2ca8b5
KW
1821Locales are supported. There may be glitches when a locale is another
1822EBCDIC code page which has some of the
1823L<code-page variant characters|/The 13 variant characters> in other
1824positions.
1825
1826There aren't currently any real UTF-8 locales, even though some locale
1827names contain the string "UTF-8".
1828
1829See L<perllocale> for information on locales. The L10N files
1830are in F</usr/nls/locale>. C<$Config{d_setlocale}> is C<'define'> on
1831OS/390 or z/OS.
d396a558
JH
1832
1833=back
1834
d396a558
JH
1835=head2 POSIX-BC?
1836
1837XXX.
1838
51b5cecb
PP
1839=head1 BUGS
1840
4d2ca8b5
KW
1841=over 4
1842
1843=item *
1844
416c06fc
KW
1845The C<cmp> (and hence C<sort>) operators do not necessarily give the
1846correct results when both operands are UTF-EBCDIC encoded strings and
1847there is a mixture of ASCII and/or control characters, along with other
1848characters.
1849
1850=item *
1851
1852Ranges containing C<\N{...}> in the C<tr///> (and C<y///>)
1853transliteration operators are treated differently than the equivalent
f0b1ad2b 1854ranges in regular expression patterns. They should, but don't, cause
416c06fc
KW
1855the values in the ranges to all be treated as Unicode code points, and
1856not native ones. (L<perlre/Version 8 Regular Expressions> gives
1857details as to how it should work.)
1858
1859=item *
1860
51b5cecb 1861Not all shells will allow multiple C<-e> string arguments to perl to
4d2ca8b5
KW
1862be concatenated together properly as recipes in this document
18630, 2, 4, 5, and 6 might
395f5a0c 1864seem to imply.
51b5cecb 1865
4d2ca8b5
KW
1866=item *
1867
1868There are some bugs in the C<pack>/C<unpack> C<"U0"> template
1869
1870=item *
1871
1872There are a significant number of test failures in the CPAN modules
1873shipped with Perl v5.22. These are only in modules not primarily
1874maintained by Perl 5 porters. Some of these are failures in the tests
1875only: they don't realize that it is proper to get different results on
1876EBCDIC platforms. And some of the failures are real bugs. If you
1877compile and do a C<make test> on Perl, all tests on the C</cpan>
1878directory are skipped.
1879
1880In particular, the extensions L<Unicode::Collate> and
1881L<Unicode::Normalize> are not supported under EBCDIC; likewise for the
1882(now deprecated) L<encoding> pragma.
1883
1884L<Encode> partially works.
1885
7a145370
KW
1886=item *
1887
1888In earlier versions, when byte and character data were concatenated,
1889the new string was sometimes created by
1890decoding the byte strings as I<ISO 8859-1 (Latin-1)>, even if the
1891old Unicode string used EBCDIC.
1892
4d2ca8b5
KW
1893=back
1894
b3b6085d
PP
1895=head1 SEE ALSO
1896
395f5a0c 1897L<perllocale>, L<perlfunc>, L<perlunicode>, L<utf8>.
b3b6085d 1898
d396a558
JH
1899=head1 REFERENCES
1900
2bbc8d55 1901L<http://anubis.dkuug.dk/i18n/charmaps>
d396a558 1902
2bbc8d55 1903L<http://www.unicode.org/>
d396a558 1904
2bbc8d55 1905L<http://www.unicode.org/unicode/reports/tr16/>
d396a558 1906
08d7a6b2 1907L<http://www.wps.com/projects/codes/>
51b5cecb
PP
1908B<ASCII: American Standard Code for Information Infiltration> Tom Jennings,
1909September 1999.
1910
eaf8b9b9
KW
1911B<The Unicode Standard, Version 3.0> The Unicode Consortium, Lisa Moore ed.,
1912ISBN 0-201-61633-5, Addison Wesley Developers Press, February 2000.
51b5cecb 1913
eaf8b9b9
KW
1914B<CDRA: IBM - Character Data Representation Architecture -
1915Reference and Registry>, IBM SC09-2190-00, December 1996.
d396a558 1916
eaf8b9b9 1917"Demystifying Character Sets", Andrea Vine, Multilingual Computing
d396a558
JH
1918& Technology, B<#26 Vol. 10 Issue 4>, August/September 1999;
1919ISSN 1523-0309; Multilingual Computing Inc. Sandpoint ID, USA.
1920
1e054b24
PP
1921B<Codes, Ciphers, and Other Cryptic and Clandestine Communication>
1922Fred B. Wrixon, ISBN 1-57912-040-7, Black Dog & Leventhal Publishers,
19231998.
1924
2bbc8d55 1925L<http://www.bobbemer.com/P-BIT.HTM>
395f5a0c
PK
1926B<IBM - EBCDIC and the P-bit; The biggest Computer Goof Ever> Robert Bemer.
1927
1928=head1 HISTORY
1929
193015 April 2001: added UTF-8 and UTF-EBCDIC to main table, pvhp.
1931
d396a558
JH
1932=head1 AUTHOR
1933
eaf8b9b9
KW
1934Peter Prymmer pvhp@best.com wrote this in 1999 and 2000
1935with CCSID 0819 and 0037 help from Chris Leach and
1936AndrE<eacute> Pirard A.Pirard@ulg.ac.be as well as POSIX-BC
b3b6085d 1937help from Thomas Dorner Thomas.Dorner@start.de.
eaf8b9b9
KW
1938Thanks also to Vickie Cooper, Philip Newton, William Raffloer, and
1939Joe Smith. Trademarks, registered trademarks, service marks and
1940registered service marks used in this document are the property of
1e054b24 1941their respective owners.
4d2ca8b5
KW
1942
1943Now maintained by Perl5 Porters.