1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
|
.\" Automatically generated by Pod::Man 4.14 (Pod::Simple 3.43)
.\"
.\" Standard preamble:
.\" ========================================================================
.de Sp \" Vertical space (when we can't use .PP)
.if t .sp .5v
.if n .sp
..
.de Vb \" Begin verbatim text
.ft CW
.nf
.ne \\$1
..
.de Ve \" End verbatim text
.ft R
.fi
..
.\" Set up some character translations and predefined strings. \*(-- will
.\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left
.\" double quote, and \*(R" will give a right double quote. \*(C+ will
.\" give a nicer C++. Capital omega is used to do unbreakable dashes and
.\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff,
.\" nothing in troff, for use with C<>.
.tr \(*W-
.ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p'
.ie n \{\
. ds -- \(*W-
. ds PI pi
. if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch
. if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch
. ds L" ""
. ds R" ""
. ds C` ""
. ds C' ""
'br\}
.el\{\
. ds -- \|\(em\|
. ds PI \(*p
. ds L" ``
. ds R" ''
. ds C`
. ds C'
'br\}
.\"
.\" Escape single quotes in literal strings from groff's Unicode transform.
.ie \n(.g .ds Aq \(aq
.el .ds Aq '
.\"
.\" If the F register is >0, we'll generate index entries on stderr for
.\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index
.\" entries marked with X<> in POD. Of course, you'll have to process the
.\" output yourself in some meaningful fashion.
.\"
.\" Avoid warning from groff about undefined register 'F'.
.de IX
..
.nr rF 0
.if \n(.g .if rF .nr rF 1
.if (\n(rF:(\n(.g==0)) \{\
. if \nF \{\
. de IX
. tm Index:\\$1\t\\n%\t"\\$2"
..
. if !\nF==2 \{\
. nr % 0
. nr F 2
. \}
. \}
.\}
.rr rF
.\" ========================================================================
.\"
.IX Title "encoding 3perl"
.TH encoding 3perl "2023-11-25" "perl v5.36.0" "Perl Programmers Reference Guide"
.\" For nroff, turn off justification. Always turn off hyphenation; it makes
.\" way too many mistakes in technical documents.
.if n .ad l
.nh
.SH "NAME"
encoding \- allows you to write your script in non\-ASCII and non\-UTF\-8
.SH "WARNING"
.IX Header "WARNING"
This module has been deprecated since perl v5.18. See \*(L"\s-1DESCRIPTION\*(R"\s0 and
\&\*(L"\s-1BUGS\*(R"\s0.
.SH "SYNOPSIS"
.IX Header "SYNOPSIS"
.Vb 2
\& use encoding "greek"; # Perl like Greek to you?
\& use encoding "euc\-jp"; # Jperl!
\&
\& # or you can even do this if your shell supports your native encoding
\&
\& perl \-Mencoding=latin2 \-e\*(Aq...\*(Aq # Feeling centrally European?
\& perl \-Mencoding=euc\-kr \-e\*(Aq...\*(Aq # Or Korean?
\&
\& # more control
\&
\& # A simple euc\-cn => utf\-8 converter
\& use encoding "euc\-cn", STDOUT => "utf8"; while(<>){print};
\&
\& # "no encoding;" supported
\& no encoding;
\&
\& # an alternate way, Filter
\& use encoding "euc\-jp", Filter=>1;
\& # now you can use kanji identifiers \-\- in euc\-jp!
\&
\& # encode based on the current locale \- specialized purposes only;
\& # fraught with danger!!
\& use encoding \*(Aq:locale\*(Aq;
.Ve
.SH "DESCRIPTION"
.IX Header "DESCRIPTION"
This pragma is used to enable a Perl script to be written in encodings that
aren't strictly \s-1ASCII\s0 nor \s-1UTF\-8.\s0 It translates all or portions of the Perl
program script from a given encoding into \s-1UTF\-8,\s0 and changes the PerlIO layers
of \f(CW\*(C`STDIN\*(C'\fR and \f(CW\*(C`STDOUT\*(C'\fR to the encoding specified.
.PP
This pragma dates from the days when UTF\-8\-enabled editors were uncommon. But
that was long ago, and the need for it is greatly diminished. That, coupled
with the fact that it doesn't work with threads, along with other problems,
(see \*(L"\s-1BUGS\*(R"\s0) have led to its being deprecated. It is planned to remove this
pragma in a future Perl version. New code should be written in \s-1UTF\-8,\s0 and the
\&\f(CW\*(C`use utf8\*(C'\fR pragma used instead (see perluniintro and utf8 for details).
Old code should be converted to \s-1UTF\-8,\s0 via something like the recipe in the
\&\*(L"\s-1SYNOPSIS\*(R"\s0 (though this simple approach may require manual adjustments
afterwards).
.PP
If \s-1UTF\-8\s0 is not an option, it is recommended that one use a simple source
filter, such as that provided by Filter::Encoding on \s-1CPAN\s0 or this
pragma's own \f(CW\*(C`Filter\*(C'\fR option (see below).
.PP
The only legitimate use of this pragma is almost certainly just one per file,
near the top, with file scope, as the file is likely going to only be written
in one encoding. Further restrictions apply in Perls before v5.22 (see
\&\*(L"Prior to Perl v5.22\*(R").
.PP
There are two basic modes of operation (plus turning if off):
.ie n .IP """use encoding [\*(Aq\fIENCNAME\fP\*(Aq] ;""" 4
.el .IP "\f(CWuse encoding [\*(Aq\f(CIENCNAME\f(CW\*(Aq] ;\fR" 4
.IX Item "use encoding [ENCNAME] ;"
Please note: This mode of operation is no longer supported as of Perl
v5.26.
.Sp
This is the normal operation. It translates various literals encountered in
the Perl source file from the encoding \fI\s-1ENCNAME\s0\fR into \s-1UTF\-8,\s0 and similarly
converts character code points. This is used when the script is a combination
of \s-1ASCII\s0 (for the variable names and punctuation, \fIetc\fR), but the literal
data is in the specified encoding.
.Sp
\&\fI\s-1ENCNAME\s0\fR is optional. If omitted, the encoding specified in the environment
variable \f(CW\*(C`PERL_ENCODING\*(C'\fR is used. If this isn't
set, or the resolved-to encoding is not known to \f(CW\*(C`Encode\*(C'\fR, the error
\&\f(CW\*(C`Unknown encoding \*(Aq\f(CIENCNAME\f(CW\*(Aq\*(C'\fR will be thrown.
.Sp
Starting in Perl v5.8.6 (\f(CW\*(C`Encode\*(C'\fR version 2.0.1), \fI\s-1ENCNAME\s0\fR may be the
name \f(CW\*(C`:locale\*(C'\fR. This is for very specialized applications, and is documented
in "The \f(CW\*(C`:locale\*(C'\fR sub-pragma" below.
.Sp
The literals that are converted are \f(CW\*(C`q//, qq//, qr//, qw///, qx//\*(C'\fR, and
starting in v5.8.1, \f(CW\*(C`tr///\*(C'\fR. Operations that do conversions include \f(CW\*(C`chr\*(C'\fR,
\&\f(CW\*(C`ord\*(C'\fR, \f(CW\*(C`utf8::upgrade\*(C'\fR (but not \f(CW\*(C`utf8::downgrade\*(C'\fR), and \f(CW\*(C`chomp\*(C'\fR.
.Sp
Also starting in v5.8.1, the \f(CW\*(C`DATA\*(C'\fR pseudo-filehandle is translated from the
encoding into \s-1UTF\-8.\s0
.Sp
For example, you can write code in EUC-JP as follows:
.Sp
.Vb 3
\& my $Rakuda = "\exF1\exD1\exF1\exCC"; # Camel in Kanji
\& #<\-char\-><\-char\-> # 4 octets
\& s/\ebCamel\eb/$Rakuda/;
.Ve
.Sp
And with \f(CW\*(C`use encoding "euc\-jp"\*(C'\fR in effect, it is the same thing as
that code in \s-1UTF\-8:\s0
.Sp
.Vb 2
\& my $Rakuda = "\ex{99F1}\ex{99DD}"; # two Unicode Characters
\& s/\ebCamel\eb/$Rakuda/;
.Ve
.Sp
See \*(L"\s-1EXAMPLE\*(R"\s0 below for a more complete example.
.Sp
Unless \f(CW\*(C`${^UNICODE}\*(C'\fR (available starting in v5.8.2) exists and is non-zero, the
PerlIO layers of \f(CW\*(C`STDIN\*(C'\fR and \f(CW\*(C`STDOUT\*(C'\fR are set to "\f(CW\*(C`:encoding(\f(CIENCNAME\f(CW)\*(C'\fR".
Therefore,
.Sp
.Vb 5
\& use encoding "euc\-jp";
\& my $message = "Camel is the symbol of perl.\en";
\& my $Rakuda = "\exF1\exD1\exF1\exCC"; # Camel in Kanji
\& $message =~ s/\ebCamel\eb/$Rakuda/;
\& print $message;
.Ve
.Sp
will print
.Sp
.Vb 1
\& "\exF1\exD1\exF1\exCC is the symbol of perl.\en"
.Ve
.Sp
not
.Sp
.Vb 1
\& "\ex{99F1}\ex{99DD} is the symbol of perl.\en"
.Ve
.Sp
You can override this by giving extra arguments; see below.
.Sp
Note that \f(CW\*(C`STDERR\*(C'\fR \s-1WILL NOT\s0 be changed, regardless.
.Sp
Also note that non-STD file handles remain unaffected. Use \f(CW\*(C`use
open\*(C'\fR or \f(CW\*(C`binmode\*(C'\fR to change the layers of those.
.ie n .IP """use encoding \fIENCNAME\fP, Filter=>1;""" 4
.el .IP "\f(CWuse encoding \f(CIENCNAME\f(CW, Filter=>1;\fR" 4
.IX Item "use encoding ENCNAME, Filter=>1;"
This operates as above, but the \f(CW\*(C`Filter\*(C'\fR argument with a non-zero
value causes the entire script, and not just literals, to be translated from
the encoding into \s-1UTF\-8.\s0 This allows identifiers in the source to be in that
encoding as well. (Problems may occur if the encoding is not a superset of
\&\s-1ASCII\s0; imagine all your semi-colons being translated into something
different.) One can use this form to make
.Sp
.Vb 1
\& ${"\ex{4eba}"}++
.Ve
.Sp
work. (This is equivalent to \f(CW\*(C`$\f(CIhuman\f(CW++\*(C'\fR, where \fIhuman\fR is a single Han
ideograph).
.Sp
This effectively means that your source code behaves as if it were written in
\&\s-1UTF\-8\s0 with \f(CW\*(C`\*(Aquse utf8\*(C'\fR' in effect. So even if your editor only supports
Shift_JIS, for example, you can still try examples in Chapter 15 of
\&\f(CW\*(C`Programming Perl, 3rd Ed.\*(C'\fR.
.Sp
This option is significantly slower than the other one.
.ie n .IP """no encoding;""" 4
.el .IP "\f(CWno encoding;\fR" 4
.IX Item "no encoding;"
Unsets the script encoding. The layers of \f(CW\*(C`STDIN\*(C'\fR, \f(CW\*(C`STDOUT\*(C'\fR are
reset to "\f(CW\*(C`:raw\*(C'\fR" (the default unprocessed raw stream of bytes).
.SH "OPTIONS"
.IX Header "OPTIONS"
.ie n .SS "Setting ""STDIN"" and/or ""STDOUT"" individually"
.el .SS "Setting \f(CWSTDIN\fP and/or \f(CWSTDOUT\fP individually"
.IX Subsection "Setting STDIN and/or STDOUT individually"
The encodings of \f(CW\*(C`STDIN\*(C'\fR and \f(CW\*(C`STDOUT\*(C'\fR are individually settable by parameters to
the pragma:
.PP
.Vb 1
\& use encoding \*(Aqeuc\-tw\*(Aq, STDIN => \*(Aqgreek\*(Aq ...;
.Ve
.PP
In this case, you cannot omit the first \fI\s-1ENCNAME\s0\fR. \f(CW\*(C`STDIN => undef\*(C'\fR
turns the I/O transcoding completely off for that filehandle.
.PP
When \f(CW\*(C`${^UNICODE}\*(C'\fR (available starting in v5.8.2) exists and is non-zero,
these options will be completely ignored. See "\f(CW\*(C`${^UNICODE}\*(C'\fR" in perlvar and
"\f(CW\*(C`\-C\*(C'\fR" in perlrun for details.
.ie n .SS "The "":locale"" sub-pragma"
.el .SS "The \f(CW:locale\fP sub-pragma"
.IX Subsection "The :locale sub-pragma"
Starting in v5.8.6, the encoding name may be \f(CW\*(C`:locale\*(C'\fR. This means that the
encoding is taken from the current locale, and not hard-coded by the pragma.
Since a script really can only be encoded in exactly one encoding, this option
is dangerous. It makes sense only if the script itself is written in \s-1ASCII,\s0
and all the possible locales that will be in use when the script is executed
are supersets of \s-1ASCII.\s0 That means that the script itself doesn't get
changed, but the I/O handles have the specified encoding added, and the
operations like \f(CW\*(C`chr\*(C'\fR and \f(CW\*(C`ord\*(C'\fR use that encoding.
.PP
The logic of finding which locale \f(CW\*(C`:locale\*(C'\fR uses is as follows:
.IP "1." 4
If the platform supports the \f(CW\*(C`langinfo(CODESET)\*(C'\fR interface, the codeset
returned is used as the default encoding for the open pragma.
.IP "2." 4
If 1. didn't work but we are under the locale pragma, the environment
variables \f(CW\*(C`LC_ALL\*(C'\fR and \f(CW\*(C`LANG\*(C'\fR (in that order) are matched for encodings
(the part after "\f(CW\*(C`.\*(C'\fR", if any), and if any found, that is used
as the default encoding for the open pragma.
.IP "3." 4
If 1. and 2. didn't work, the environment variables \f(CW\*(C`LC_ALL\*(C'\fR and \f(CW\*(C`LANG\*(C'\fR
(in that order) are matched for anything looking like \s-1UTF\-8,\s0 and if
any found, \f(CW\*(C`:utf8\*(C'\fR is used as the default encoding for the open
pragma.
.PP
If your locale environment variables (\f(CW\*(C`LC_ALL\*(C'\fR, \f(CW\*(C`LC_CTYPE\*(C'\fR, \f(CW\*(C`LANG\*(C'\fR)
contain the strings '\s-1UTF\-8\s0' or '\s-1UTF8\s0' (case-insensitive matching),
the default encoding of your \f(CW\*(C`STDIN\*(C'\fR, \f(CW\*(C`STDOUT\*(C'\fR, and \f(CW\*(C`STDERR\*(C'\fR, and of
\&\fBany subsequent file open\fR, is \s-1UTF\-8.\s0
.SH "CAVEATS"
.IX Header "CAVEATS"
.SS "\s-1SIDE EFFECTS\s0"
.IX Subsection "SIDE EFFECTS"
.IP "\(bu" 4
If the \f(CW\*(C`encoding\*(C'\fR pragma is in scope then the lengths returned are
calculated from the length of \f(CW$/\fR in Unicode characters, which is not
always the same as the length of \f(CW$/\fR in the native encoding.
.IP "\(bu" 4
Without this pragma, if strings operating under byte semantics and strings
with Unicode character data are concatenated, the new string will
be created by decoding the byte strings as \fI\s-1ISO 8859\-1\s0 (Latin\-1)\fR.
.Sp
The \fBencoding\fR pragma changes this to use the specified encoding
instead. For example:
.Sp
.Vb 5
\& use encoding \*(Aqutf8\*(Aq;
\& my $string = chr(20000); # a Unicode string
\& utf8::encode($string); # now it\*(Aqs a UTF\-8 encoded byte string
\& # concatenate with another Unicode string
\& print length($string . chr(20000));
.Ve
.Sp
Will print \f(CW2\fR, because \f(CW$string\fR is upgraded as \s-1UTF\-8.\s0 Without
\&\f(CW\*(C`use encoding \*(Aqutf8\*(Aq;\*(C'\fR, it will print \f(CW4\fR instead, since \f(CW$string\fR
is three octets when interpreted as Latin\-1.
.SS "\s-1DO NOT MIX MULTIPLE ENCODINGS\s0"
.IX Subsection "DO NOT MIX MULTIPLE ENCODINGS"
Notice that only literals (string or regular expression) having only
legacy code points are affected: if you mix data like this
.PP
.Vb 2
\& \ex{100}\exDF
\& \exDF\ex{100}
.Ve
.PP
the data is assumed to be in (Latin 1 and) Unicode, not in your native
encoding. In other words, this will match in \*(L"greek\*(R":
.PP
.Vb 1
\& "\exDF" =~ /\ex{3af}/
.Ve
.PP
but this will not
.PP
.Vb 1
\& "\exDF\ex{100}" =~ /\ex{3af}\ex{100}/
.Ve
.PP
since the \f(CW\*(C`\exDF\*(C'\fR (\s-1ISO 8859\-7 GREEK SMALL LETTER IOTA WITH TONOS\s0) on
the left will \fBnot\fR be upgraded to \f(CW\*(C`\ex{3af}\*(C'\fR (Unicode \s-1GREEK SMALL
LETTER IOTA WITH TONOS\s0) because of the \f(CW\*(C`\ex{100}\*(C'\fR on the left. You
should not be mixing your legacy data and Unicode in the same string.
.PP
This pragma also affects encoding of the 0x80..0xFF code point range:
normally characters in that range are left as eight-bit bytes (unless
they are combined with characters with code points 0x100 or larger,
in which case all characters need to become \s-1UTF\-8\s0 encoded), but if
the \f(CW\*(C`encoding\*(C'\fR pragma is present, even the 0x80..0xFF range always
gets \s-1UTF\-8\s0 encoded.
.PP
After all, the best thing about this pragma is that you don't have to
resort to \ex{....} just to spell your name in a native encoding.
So feel free to put your strings in your encoding in quotes and
regexes.
.SS "Prior to Perl v5.22"
.IX Subsection "Prior to Perl v5.22"
The pragma was a per script, not a per block lexical. Only the last
\&\f(CW\*(C`use encoding\*(C'\fR or \f(CW\*(C`no encoding\*(C'\fR mattered, and it affected
\&\fBthe whole script\fR. However, the \f(CW\*(C`no encoding\*(C'\fR pragma was supported and
\&\f(CW\*(C`use encoding\*(C'\fR could appear as many times as you want in a given script
(though only the last was effective).
.PP
Since the scope wasn't lexical, other modules' use of \f(CW\*(C`chr\*(C'\fR, \f(CW\*(C`ord\*(C'\fR, \fIetc.\fR
were affected. This leads to spooky, incorrect action at a distance that is
hard to debug.
.PP
This means you would have to be very careful of the load order:
.PP
.Vb 5
\& # called module
\& package Module_IN_BAR;
\& use encoding "bar";
\& # stuff in "bar" encoding here
\& 1;
\&
\& # caller script
\& use encoding "foo"
\& use Module_IN_BAR;
\& # surprise! use encoding "bar" is in effect.
.Ve
.PP
The best way to avoid this oddity is to use this pragma \s-1RIGHT AFTER\s0
other modules are loaded. i.e.
.PP
.Vb 2
\& use Module_IN_BAR;
\& use encoding "foo";
.Ve
.SS "Prior to Encode version 1.87"
.IX Subsection "Prior to Encode version 1.87"
.IP "\(bu" 4
\&\f(CW\*(C`STDIN\*(C'\fR and \f(CW\*(C`STDOUT\*(C'\fR were not set under the filter option.
And \f(CW\*(C`STDIN=>\f(CIENCODING\f(CW\*(C'\fR and \f(CW\*(C`STDOUT=>\f(CIENCODING\f(CW\*(C'\fR didn't work like
non-filter version.
.IP "\(bu" 4
\&\f(CW\*(C`use utf8\*(C'\fR wasn't implicitly declared so you have to \f(CW\*(C`use utf8\*(C'\fR to do
.Sp
.Vb 1
\& ${"\ex{4eba}"}++
.Ve
.SS "Prior to Perl v5.8.1"
.IX Subsection "Prior to Perl v5.8.1"
.ie n .IP """NON-EUC"" doublebyte encodings" 4
.el .IP "``NON-EUC'' doublebyte encodings" 4
.IX Item "NON-EUC doublebyte encodings"
Because perl needs to parse the script before applying this pragma, such
encodings as Shift_JIS and Big\-5 that may contain \f(CW\*(Aq\e\*(Aq\fR (\s-1BACKSLASH\s0;
\&\f(CW\*(C`\ex5c\*(C'\fR) in the second byte fail because the second byte may
accidentally escape the quoting character that follows.
.ie n .IP """tr///""" 4
.el .IP "\f(CWtr///\fR" 4
.IX Item "tr///"
The \fBencoding\fR pragma works by decoding string literals in
\&\f(CW\*(C`q//,qq//,qr//,qw///, qx//\*(C'\fR and so forth. In perl v5.8.0, this
does not apply to \f(CW\*(C`tr///\*(C'\fR. Therefore,
.Sp
.Vb 4
\& use encoding \*(Aqeuc\-jp\*(Aq;
\& #....
\& $kana =~ tr/\exA4\exA1\-\exA4\exF3/\exA5\exA1\-\exA5\exF3/;
\& # \-\-\-\-\-\-\-\- \-\-\-\-\-\-\-\- \-\-\-\-\-\-\-\- \-\-\-\-\-\-\-\-
.Ve
.Sp
Does not work as
.Sp
.Vb 1
\& $kana =~ tr/\ex{3041}\-\ex{3093}/\ex{30a1}\-\ex{30f3}/;
.Ve
.RS 4
.IP "Legend of characters above" 4
.IX Item "Legend of characters above"
.Vb 6
\& utf8 euc\-jp charnames::viacode()
\& \-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-
\& \ex{3041} \exA4\exA1 HIRAGANA LETTER SMALL A
\& \ex{3093} \exA4\exF3 HIRAGANA LETTER N
\& \ex{30a1} \exA5\exA1 KATAKANA LETTER SMALL A
\& \ex{30f3} \exA5\exF3 KATAKANA LETTER N
.Ve
.RE
.RS 4
.Sp
This counterintuitive behavior has been fixed in perl v5.8.1.
.Sp
In perl v5.8.0, you can work around this as follows;
.Sp
.Vb 3
\& use encoding \*(Aqeuc\-jp\*(Aq;
\& # ....
\& eval qq{ \e$kana =~ tr/\exA4\exA1\-\exA4\exF3/\exA5\exA1\-\exA5\exF3/ };
.Ve
.Sp
Note the \f(CW\*(C`tr//\*(C'\fR expression is surrounded by \f(CW\*(C`qq{}\*(C'\fR. The idea behind
this is the same as the classic idiom that makes \f(CW\*(C`tr///\*(C'\fR 'interpolate':
.Sp
.Vb 2
\& tr/$from/$to/; # wrong!
\& eval qq{ tr/$from/$to/ }; # workaround.
.Ve
.RE
.SH "EXAMPLE \- Greekperl"
.IX Header "EXAMPLE - Greekperl"
.Vb 1
\& use encoding "iso 8859\-7";
\&
\& # \exDF in ISO 8859\-7 (Greek) is \ex{3af} in Unicode.
\&
\& $a = "\exDF";
\& $b = "\ex{100}";
\&
\& printf "%#x\en", ord($a); # will print 0x3af, not 0xdf
\&
\& $c = $a . $b;
\&
\& # $c will be "\ex{3af}\ex{100}", not "\ex{df}\ex{100}".
\&
\& # chr() is affected, and ...
\&
\& print "mega\en" if ord(chr(0xdf)) == 0x3af;
\&
\& # ... ord() is affected by the encoding pragma ...
\&
\& print "tera\en" if ord(pack("C", 0xdf)) == 0x3af;
\&
\& # ... as are eq and cmp ...
\&
\& print "peta\en" if "\ex{3af}" eq pack("C", 0xdf);
\& print "exa\en" if "\ex{3af}" cmp pack("C", 0xdf) == 0;
\&
\& # ... but pack/unpack C are not affected, in case you still
\& # want to go back to your native encoding
\&
\& print "zetta\en" if unpack("C", (pack("C", 0xdf))) == 0xdf;
.Ve
.SH "BUGS"
.IX Header "BUGS"
.IP "Thread safety" 4
.IX Item "Thread safety"
\&\f(CW\*(C`use encoding ...\*(C'\fR is not thread-safe (i.e., do not use in threaded
applications).
.IP "Can't be used by more than one module in a single program." 4
.IX Item "Can't be used by more than one module in a single program."
Only one encoding is allowed. If you combine modules in a program that have
different encodings, only one will be actually used.
.ie n .IP "Other modules using ""STDIN"" and ""STDOUT"" get the encoded stream" 4
.el .IP "Other modules using \f(CWSTDIN\fR and \f(CWSTDOUT\fR get the encoded stream" 4
.IX Item "Other modules using STDIN and STDOUT get the encoded stream"
They may be expecting something completely different.
.IP "literals in regex that are longer than 127 bytes" 4
.IX Item "literals in regex that are longer than 127 bytes"
For native multibyte encodings (either fixed or variable length),
the current implementation of the regular expressions may introduce
recoding errors for regular expression literals longer than 127 bytes.
.IP "\s-1EBCDIC\s0" 4
.IX Item "EBCDIC"
The encoding pragma is not supported on \s-1EBCDIC\s0 platforms.
.ie n .IP """format""" 4
.el .IP "\f(CWformat\fR" 4
.IX Item "format"
This pragma doesn't work well with \f(CW\*(C`format\*(C'\fR because PerlIO does not
get along very well with it. When \f(CW\*(C`format\*(C'\fR contains non-ASCII
characters it prints funny or gets \*(L"wide character warnings\*(R".
To understand it, try the code below.
.Sp
.Vb 11
\& # Save this one in utf8
\& # replace *non\-ascii* with a non\-ascii string
\& my $camel;
\& format STDOUT =
\& *non\-ascii*@>>>>>>>
\& $camel
\& .
\& $camel = "*non\-ascii*";
\& binmode(STDOUT=>\*(Aq:encoding(utf8)\*(Aq); # bang!
\& write; # funny
\& print $camel, "\en"; # fine
.Ve
.Sp
Without binmode this happens to work but without binmode, \fBprint()\fR
fails instead of \fBwrite()\fR.
.Sp
At any rate, the very use of \f(CW\*(C`format\*(C'\fR is questionable when it comes to
unicode characters since you have to consider such things as character
width (i.e. double-width for ideographs) and directions (i.e. \s-1BIDI\s0 for
Arabic and Hebrew).
.ie n .IP "See also ""\s-1CAVEATS""\s0" 4
.el .IP "See also ``\s-1CAVEATS''\s0" 4
.IX Item "See also CAVEATS"
.SH "HISTORY"
.IX Header "HISTORY"
This pragma first appeared in Perl v5.8.0. It has been enhanced in later
releases as specified above.
.SH "SEE ALSO"
.IX Header "SEE ALSO"
perlunicode, Encode, open, Filter::Util::Call,
.PP
Ch. 15 of \f(CW\*(C`Programming Perl (3rd Edition)\*(C'\fR
by Larry Wall, Tom Christiansen, Jon Orwant;
O'Reilly & Associates; \s-1ISBN 0\-596\-00027\-8\s0
|