This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perldelta: entry for qr/\87/ bug fix
[perl5.git] / pod / perlunicode.pod
1 =head1 NAME
2
3 perlunicode - Unicode support in Perl
4
5 =head1 DESCRIPTION
6
7 =head2 Important Caveats
8
9 Unicode support is an extensive requirement. While Perl does not
10 implement the Unicode standard or the accompanying technical reports
11 from cover to cover, Perl does support many Unicode features.
12
13 People who want to learn to use Unicode in Perl, should probably read
14 the L<Perl Unicode tutorial, perlunitut|perlunitut> and
15 L<perluniintro>, before reading
16 this reference document.
17
18 Also, the use of Unicode may present security issues that aren't obvious.
19 Read L<Unicode Security Considerations|http://www.unicode.org/reports/tr36>.
20
21 =over 4
22
23 =item Safest if you "use feature 'unicode_strings'"
24
25 In order to preserve backward compatibility, Perl does not turn
26 on full internal Unicode support unless the pragma
27 C<use feature 'unicode_strings'> is specified.  (This is automatically
28 selected if you use C<use 5.012> or higher.)  Failure to do this can
29 trigger unexpected surprises.  See L</The "Unicode Bug"> below.
30
31 This pragma doesn't affect I/O.  Nor does it change the internal
32 representation of strings, only their interpretation.  There are still
33 several places where Unicode isn't fully supported, such as in
34 filenames.
35
36 =item Input and Output Layers
37
38 Perl knows when a filehandle uses Perl's internal Unicode encodings
39 (UTF-8, or UTF-EBCDIC if in EBCDIC) if the filehandle is opened with
40 the ":encoding(utf8)" layer.  Other encodings can be converted to Perl's
41 encoding on input or from Perl's encoding on output by use of the
42 ":encoding(...)"  layer.  See L<open>.
43
44 To indicate that Perl source itself is in UTF-8, use C<use utf8;>.
45
46 =item C<use utf8> still needed to enable UTF-8/UTF-EBCDIC in scripts
47
48 As a compatibility measure, the C<use utf8> pragma must be explicitly
49 included to enable recognition of UTF-8 in the Perl scripts themselves
50 (in string or regular expression literals, or in identifier names) on
51 ASCII-based machines or to recognize UTF-EBCDIC on EBCDIC-based
52 machines.  B<These are the only times when an explicit C<use utf8>
53 is needed.>  See L<utf8>.
54
55 =item BOM-marked scripts and UTF-16 scripts autodetected
56
57 If a Perl script begins marked with the Unicode BOM (UTF-16LE, UTF16-BE,
58 or UTF-8), or if the script looks like non-BOM-marked UTF-16 of either
59 endianness, Perl will correctly read in the script as Unicode.
60 (BOMless UTF-8 cannot be effectively recognized or differentiated from
61 ISO 8859-1 or other eight-bit encodings.)
62
63 =item C<use encoding> needed to upgrade non-Latin-1 byte strings
64
65 By default, there is a fundamental asymmetry in Perl's Unicode model:
66 implicit upgrading from byte strings to Unicode strings assumes that
67 they were encoded in I<ISO 8859-1 (Latin-1)>, but Unicode strings are
68 downgraded with UTF-8 encoding.  This happens because the first 256
69 codepoints in Unicode happens to agree with Latin-1.
70
71 See L</"Byte and Character Semantics"> for more details.
72
73 =back
74
75 =head2 Byte and Character Semantics
76
77 Beginning with version 5.6, Perl uses logically-wide characters to
78 represent strings internally.
79
80 Starting in Perl 5.14, Perl-level operations work with
81 characters rather than bytes within the scope of a
82 C<L<use feature 'unicode_strings'|feature>> (or equivalently
83 C<use 5.012> or higher).  (This is not true if bytes have been
84 explicitly requested by C<L<use bytes|bytes>>, nor necessarily true
85 for interactions with the platform's operating system.)
86
87 For earlier Perls, and when C<unicode_strings> is not in effect, Perl
88 provides a fairly safe environment that can handle both types of
89 semantics in programs.  For operations where Perl can unambiguously
90 decide that the input data are characters, Perl switches to character
91 semantics.  For operations where this determination cannot be made
92 without additional information from the user, Perl decides in favor of
93 compatibility and chooses to use byte semantics.
94
95 When C<use locale> (but not C<use locale ':not_characters'>) is in
96 effect, Perl uses the semantics associated with the current locale.
97 (C<use locale> overrides C<use feature 'unicode_strings'> in the same scope;
98 while C<use locale ':not_characters'> effectively also selects
99 C<use feature 'unicode_strings'> in its scope; see L<perllocale>.)
100 Otherwise, Perl uses the platform's native
101 byte semantics for characters whose code points are less than 256, and
102 Unicode semantics for those greater than 255.  On EBCDIC platforms, this
103 is almost seamless, as the EBCDIC code pages that Perl handles are
104 equivalent to Unicode's first 256 code points.  (The exception is that
105 EBCDIC regular expression case-insensitive matching rules are not as
106 as robust as Unicode's.)   But on ASCII platforms, Perl uses US-ASCII
107 (or Basic Latin in Unicode terminology) byte semantics, meaning that characters
108 whose ordinal numbers are in the range 128 - 255 are undefined except for their
109 ordinal numbers.  This means that none have case (upper and lower), nor are any
110 a member of character classes, like C<[:alpha:]> or C<\w>.  (But all do belong
111 to the C<\W> class or the Perl regular expression extension C<[:^alpha:]>.)
112
113 This behavior preserves compatibility with earlier versions of Perl,
114 which allowed byte semantics in Perl operations only if
115 none of the program's inputs were marked as being a source of Unicode
116 character data.  Such data may come from filehandles, from calls to
117 external programs, from information provided by the system (such as %ENV),
118 or from literals and constants in the source text.
119
120 The C<utf8> pragma is primarily a compatibility device that enables
121 recognition of UTF-(8|EBCDIC) in literals encountered by the parser.
122 Note that this pragma is only required while Perl defaults to byte
123 semantics; when character semantics become the default, this pragma
124 may become a no-op.  See L<utf8>.
125
126 If strings operating under byte semantics and strings with Unicode
127 character data are concatenated, the new string will have
128 character semantics.  This can cause surprises: See L</BUGS>, below.
129 You can choose to be warned when this happens.  See L<encoding::warnings>.
130
131 Under character semantics, many operations that formerly operated on
132 bytes now operate on characters. A character in Perl is
133 logically just a number ranging from 0 to 2**31 or so. Larger
134 characters may encode into longer sequences of bytes internally, but
135 this internal detail is mostly hidden for Perl code.
136 See L<perluniintro> for more.
137
138 =head2 Effects of Character Semantics
139
140 Character semantics have the following effects:
141
142 =over 4
143
144 =item *
145
146 Strings--including hash keys--and regular expression patterns may
147 contain characters that have an ordinal value larger than 255.
148
149 If you use a Unicode editor to edit your program, Unicode characters may
150 occur directly within the literal strings in UTF-8 encoding, or UTF-16.
151 (The former requires a BOM or C<use utf8>, the latter requires a BOM.)
152
153 Unicode characters can also be added to a string by using the C<\N{U+...}>
154 notation.  The Unicode code for the desired character, in hexadecimal,
155 should be placed in the braces, after the C<U>. For instance, a smiley face is
156 C<\N{U+263A}>.
157
158 Alternatively, you can use the C<\x{...}> notation for characters 0x100 and
159 above.  For characters below 0x100 you may get byte semantics instead of
160 character semantics;  see L</The "Unicode Bug">.  On EBCDIC machines there is
161 the additional problem that the value for such characters gives the EBCDIC
162 character rather than the Unicode one, thus it is more portable to use
163 C<\N{U+...}> instead.
164
165 Additionally, you can use the C<\N{...}> notation and put the official
166 Unicode character name within the braces, such as
167 C<\N{WHITE SMILING FACE}>.  This automatically loads the L<charnames>
168 module with the C<:full> and C<:short> options.  If you prefer different
169 options for this module, you can instead, before the C<\N{...}>,
170 explicitly load it with your desired options; for example,
171
172    use charnames ':loose';
173
174 =item *
175
176 If an appropriate L<encoding> is specified, identifiers within the
177 Perl script may contain Unicode alphanumeric characters, including
178 ideographs.  Perl does not currently attempt to canonicalize variable
179 names.
180
181 =item *
182
183 Regular expressions match characters instead of bytes.  "." matches
184 a character instead of a byte.
185
186 =item *
187
188 Bracketed character classes in regular expressions match characters instead of
189 bytes and match against the character properties specified in the
190 Unicode properties database.  C<\w> can be used to match a Japanese
191 ideograph, for instance.
192
193 =item *
194
195 Named Unicode properties, scripts, and block ranges may be used (like bracketed
196 character classes) by using the C<\p{}> "matches property" construct and
197 the C<\P{}> negation, "doesn't match property".
198 See L</"Unicode Character Properties"> for more details.
199
200 You can define your own character properties and use them
201 in the regular expression with the C<\p{}> or C<\P{}> construct.
202 See L</"User-Defined Character Properties"> for more details.
203
204 =item *
205
206 The special pattern C<\X> matches a logical character, an "extended grapheme
207 cluster" in Standardese.  In Unicode what appears to the user to be a single
208 character, for example an accented C<G>, may in fact be composed of a sequence
209 of characters, in this case a C<G> followed by an accent character.  C<\X>
210 will match the entire sequence.
211
212 =item *
213
214 The C<tr///> operator translates characters instead of bytes.  Note
215 that the C<tr///CU> functionality has been removed.  For similar
216 functionality see pack('U0', ...) and pack('C0', ...).
217
218 =item *
219
220 Case translation operators use the Unicode case translation tables
221 when character input is provided.  Note that C<uc()>, or C<\U> in
222 interpolated strings, translates to uppercase, while C<ucfirst>,
223 or C<\u> in interpolated strings, translates to titlecase in languages
224 that make the distinction (which is equivalent to uppercase in languages
225 without the distinction).
226
227 =item *
228
229 Most operators that deal with positions or lengths in a string will
230 automatically switch to using character positions, including
231 C<chop()>, C<chomp()>, C<substr()>, C<pos()>, C<index()>, C<rindex()>,
232 C<sprintf()>, C<write()>, and C<length()>.  An operator that
233 specifically does not switch is C<vec()>.  Operators that really don't
234 care include operators that treat strings as a bucket of bits such as
235 C<sort()>, and operators dealing with filenames.
236
237 =item *
238
239 The C<pack()>/C<unpack()> letter C<C> does I<not> change, since it is often
240 used for byte-oriented formats.  Again, think C<char> in the C language.
241
242 There is a new C<U> specifier that converts between Unicode characters
243 and code points. There is also a C<W> specifier that is the equivalent of
244 C<chr>/C<ord> and properly handles character values even if they are above 255.
245
246 =item *
247
248 The C<chr()> and C<ord()> functions work on characters, similar to
249 C<pack("W")> and C<unpack("W")>, I<not> C<pack("C")> and
250 C<unpack("C")>.  C<pack("C")> and C<unpack("C")> are methods for
251 emulating byte-oriented C<chr()> and C<ord()> on Unicode strings.
252 While these methods reveal the internal encoding of Unicode strings,
253 that is not something one normally needs to care about at all.
254
255 =item *
256
257 The bit string operators, C<& | ^ ~>, can operate on character data.
258 However, for backward compatibility, such as when using bit string
259 operations when characters are all less than 256 in ordinal value, one
260 should not use C<~> (the bit complement) with characters of both
261 values less than 256 and values greater than 256.  Most importantly,
262 DeMorgan's laws (C<~($x|$y) eq ~$x&~$y> and C<~($x&$y) eq ~$x|~$y>)
263 will not hold.  The reason for this mathematical I<faux pas> is that
264 the complement cannot return B<both> the 8-bit (byte-wide) bit
265 complement B<and> the full character-wide bit complement.
266
267 =item *
268
269 There is a CPAN module, L<Unicode::Casing>, which allows you to define
270 your own mappings to be used in C<lc()>, C<lcfirst()>, C<uc()>,
271 C<ucfirst()>, and C<fc> (or their double-quoted string inlined
272 versions such as C<\U>).
273 (Prior to Perl 5.16, this functionality was partially provided
274 in the Perl core, but suffered from a number of insurmountable
275 drawbacks, so the CPAN module was written instead.)
276
277 =back
278
279 =over 4
280
281 =item *
282
283 And finally, C<scalar reverse()> reverses by character rather than by byte.
284
285 =back
286
287 =head2 Unicode Character Properties
288
289 (The only time that Perl considers a sequence of individual code
290 points as a single logical character is in the C<\X> construct, already
291 mentioned above.   Therefore "character" in this discussion means a single
292 Unicode code point.)
293
294 Very nearly all Unicode character properties are accessible through
295 regular expressions by using the C<\p{}> "matches property" construct
296 and the C<\P{}> "doesn't match property" for its negation.
297
298 For instance, C<\p{Uppercase}> matches any single character with the Unicode
299 "Uppercase" property, while C<\p{L}> matches any character with a
300 General_Category of "L" (letter) property.  Brackets are not
301 required for single letter property names, so C<\p{L}> is equivalent to C<\pL>.
302
303 More formally, C<\p{Uppercase}> matches any single character whose Unicode
304 Uppercase property value is True, and C<\P{Uppercase}> matches any character
305 whose Uppercase property value is False, and they could have been written as
306 C<\p{Uppercase=True}> and C<\p{Uppercase=False}>, respectively.
307
308 This formality is needed when properties are not binary; that is, if they can
309 take on more values than just True and False.  For example, the Bidi_Class (see
310 L</"Bidirectional Character Types"> below), can take on several different
311 values, such as Left, Right, Whitespace, and others.  To match these, one needs
312 to specify both the property name (Bidi_Class), AND the value being
313 matched against
314 (Left, Right, etc.).  This is done, as in the examples above, by having the
315 two components separated by an equal sign (or interchangeably, a colon), like
316 C<\p{Bidi_Class: Left}>.
317
318 All Unicode-defined character properties may be written in these compound forms
319 of C<\p{property=value}> or C<\p{property:value}>, but Perl provides some
320 additional properties that are written only in the single form, as well as
321 single-form short-cuts for all binary properties and certain others described
322 below, in which you may omit the property name and the equals or colon
323 separator.
324
325 Most Unicode character properties have at least two synonyms (or aliases if you
326 prefer): a short one that is easier to type and a longer one that is more
327 descriptive and hence easier to understand.  Thus the "L" and "Letter" properties
328 above are equivalent and can be used interchangeably.  Likewise,
329 "Upper" is a synonym for "Uppercase", and we could have written
330 C<\p{Uppercase}> equivalently as C<\p{Upper}>.  Also, there are typically
331 various synonyms for the values the property can be.   For binary properties,
332 "True" has 3 synonyms: "T", "Yes", and "Y"; and "False has correspondingly "F",
333 "No", and "N".  But be careful.  A short form of a value for one property may
334 not mean the same thing as the same short form for another.  Thus, for the
335 General_Category property, "L" means "Letter", but for the Bidi_Class property,
336 "L" means "Left".  A complete list of properties and synonyms is in
337 L<perluniprops>.
338
339 Upper/lower case differences in property names and values are irrelevant;
340 thus C<\p{Upper}> means the same thing as C<\p{upper}> or even C<\p{UpPeR}>.
341 Similarly, you can add or subtract underscores anywhere in the middle of a
342 word, so that these are also equivalent to C<\p{U_p_p_e_r}>.  And white space
343 is irrelevant adjacent to non-word characters, such as the braces and the equals
344 or colon separators, so C<\p{   Upper  }> and C<\p{ Upper_case : Y }> are
345 equivalent to these as well.  In fact, white space and even
346 hyphens can usually be added or deleted anywhere.  So even C<\p{ Up-per case = Yes}> is
347 equivalent.  All this is called "loose-matching" by Unicode.  The few places
348 where stricter matching is used is in the middle of numbers, and in the Perl
349 extension properties that begin or end with an underscore.  Stricter matching
350 cares about white space (except adjacent to non-word characters),
351 hyphens, and non-interior underscores.
352
353 You can also use negation in both C<\p{}> and C<\P{}> by introducing a caret
354 (^) between the first brace and the property name: C<\p{^Tamil}> is
355 equal to C<\P{Tamil}>.
356
357 Almost all properties are immune to case-insensitive matching.  That is,
358 adding a C</i> regular expression modifier does not change what they
359 match.  There are two sets that are affected.
360 The first set is
361 C<Uppercase_Letter>,
362 C<Lowercase_Letter>,
363 and C<Titlecase_Letter>,
364 all of which match C<Cased_Letter> under C</i> matching.
365 And the second set is
366 C<Uppercase>,
367 C<Lowercase>,
368 and C<Titlecase>,
369 all of which match C<Cased> under C</i> matching.
370 This set also includes its subsets C<PosixUpper> and C<PosixLower> both
371 of which under C</i> matching match C<PosixAlpha>.
372 (The difference between these sets is that some things, such as Roman
373 numerals, come in both upper and lower case so they are C<Cased>, but aren't considered
374 letters, so they aren't C<Cased_Letter>s.)
375
376 The result is undefined if you try to match a non-Unicode code point
377 (that is, one above 0x10FFFF) against a Unicode property.  Currently, a
378 warning is raised, and the match will fail.  In some cases, this is
379 counterintuitive, as both these fail:
380
381  chr(0x110000) =~ \p{ASCII_Hex_Digit=True}      # Fails.
382  chr(0x110000) =~ \p{ASCII_Hex_Digit=False}     # Fails!
383
384 =head3 B<General_Category>
385
386 Every Unicode character is assigned a general category, which is the "most
387 usual categorization of a character" (from
388 L<http://www.unicode.org/reports/tr44>).
389
390 The compound way of writing these is like C<\p{General_Category=Number}>
391 (short, C<\p{gc:n}>).  But Perl furnishes shortcuts in which everything up
392 through the equal or colon separator is omitted.  So you can instead just write
393 C<\pN>.
394
395 Here are the short and long forms of the General Category properties:
396
397     Short       Long
398
399     L           Letter
400     LC, L&      Cased_Letter (that is: [\p{Ll}\p{Lu}\p{Lt}])
401     Lu          Uppercase_Letter
402     Ll          Lowercase_Letter
403     Lt          Titlecase_Letter
404     Lm          Modifier_Letter
405     Lo          Other_Letter
406
407     M           Mark
408     Mn          Nonspacing_Mark
409     Mc          Spacing_Mark
410     Me          Enclosing_Mark
411
412     N           Number
413     Nd          Decimal_Number (also Digit)
414     Nl          Letter_Number
415     No          Other_Number
416
417     P           Punctuation (also Punct)
418     Pc          Connector_Punctuation
419     Pd          Dash_Punctuation
420     Ps          Open_Punctuation
421     Pe          Close_Punctuation
422     Pi          Initial_Punctuation
423                 (may behave like Ps or Pe depending on usage)
424     Pf          Final_Punctuation
425                 (may behave like Ps or Pe depending on usage)
426     Po          Other_Punctuation
427
428     S           Symbol
429     Sm          Math_Symbol
430     Sc          Currency_Symbol
431     Sk          Modifier_Symbol
432     So          Other_Symbol
433
434     Z           Separator
435     Zs          Space_Separator
436     Zl          Line_Separator
437     Zp          Paragraph_Separator
438
439     C           Other
440     Cc          Control (also Cntrl)
441     Cf          Format
442     Cs          Surrogate
443     Co          Private_Use
444     Cn          Unassigned
445
446 Single-letter properties match all characters in any of the
447 two-letter sub-properties starting with the same letter.
448 C<LC> and C<L&> are special: both are aliases for the set consisting of everything matched by C<Ll>, C<Lu>, and C<Lt>.
449
450 =head3 B<Bidirectional Character Types>
451
452 Because scripts differ in their directionality (Hebrew and Arabic are
453 written right to left, for example) Unicode supplies these properties in
454 the Bidi_Class class:
455
456     Property    Meaning
457
458     L           Left-to-Right
459     LRE         Left-to-Right Embedding
460     LRO         Left-to-Right Override
461     R           Right-to-Left
462     AL          Arabic Letter
463     RLE         Right-to-Left Embedding
464     RLO         Right-to-Left Override
465     PDF         Pop Directional Format
466     EN          European Number
467     ES          European Separator
468     ET          European Terminator
469     AN          Arabic Number
470     CS          Common Separator
471     NSM         Non-Spacing Mark
472     BN          Boundary Neutral
473     B           Paragraph Separator
474     S           Segment Separator
475     WS          Whitespace
476     ON          Other Neutrals
477
478 This property is always written in the compound form.
479 For example, C<\p{Bidi_Class:R}> matches characters that are normally
480 written right to left.
481
482 =head3 B<Scripts>
483
484 The world's languages are written in many different scripts.  This sentence
485 (unless you're reading it in translation) is written in Latin, while Russian is
486 written in Cyrillic, and Greek is written in, well, Greek; Japanese mainly in
487 Hiragana or Katakana.  There are many more.
488
489 The Unicode Script and Script_Extensions properties give what script a
490 given character is in.  Either property can be specified with the
491 compound form like
492 C<\p{Script=Hebrew}> (short: C<\p{sc=hebr}>), or
493 C<\p{Script_Extensions=Javanese}> (short: C<\p{scx=java}>).
494 In addition, Perl furnishes shortcuts for all
495 C<Script> property names.  You can omit everything up through the equals
496 (or colon), and simply write C<\p{Latin}> or C<\P{Cyrillic}>.
497 (This is not true for C<Script_Extensions>, which is required to be
498 written in the compound form.)
499
500 The difference between these two properties involves characters that are
501 used in multiple scripts.  For example the digits '0' through '9' are
502 used in many parts of the world.  These are placed in a script named
503 C<Common>.  Other characters are used in just a few scripts.  For
504 example, the "KATAKANA-HIRAGANA DOUBLE HYPHEN" is used in both Japanese
505 scripts, Katakana and Hiragana, but nowhere else.  The C<Script>
506 property places all characters that are used in multiple scripts in the
507 C<Common> script, while the C<Script_Extensions> property places those
508 that are used in only a few scripts into each of those scripts; while
509 still using C<Common> for those used in many scripts.  Thus both these
510 match:
511
512  "0" =~ /\p{sc=Common}/     # Matches
513  "0" =~ /\p{scx=Common}/    # Matches
514
515 and only the first of these match:
516
517  "\N{KATAKANA-HIRAGANA DOUBLE HYPHEN}" =~ /\p{sc=Common}  # Matches
518  "\N{KATAKANA-HIRAGANA DOUBLE HYPHEN}" =~ /\p{scx=Common} # No match
519
520 And only the last two of these match:
521
522  "\N{KATAKANA-HIRAGANA DOUBLE HYPHEN}" =~ /\p{sc=Hiragana}  # No match
523  "\N{KATAKANA-HIRAGANA DOUBLE HYPHEN}" =~ /\p{sc=Katakana}  # No match
524  "\N{KATAKANA-HIRAGANA DOUBLE HYPHEN}" =~ /\p{scx=Hiragana} # Matches
525  "\N{KATAKANA-HIRAGANA DOUBLE HYPHEN}" =~ /\p{scx=Katakana} # Matches
526
527 C<Script_Extensions> is thus an improved C<Script>, in which there are
528 fewer characters in the C<Common> script, and correspondingly more in
529 other scripts.  It is new in Unicode version 6.0, and its data are likely
530 to change significantly in later releases, as things get sorted out.
531
532 (Actually, besides C<Common>, the C<Inherited> script, contains
533 characters that are used in multiple scripts.  These are modifier
534 characters which modify other characters, and inherit the script value
535 of the controlling character.  Some of these are used in many scripts,
536 and so go into C<Inherited> in both C<Script> and C<Script_Extensions>.
537 Others are used in just a few scripts, so are in C<Inherited> in
538 C<Script>, but not in C<Script_Extensions>.)
539
540 It is worth stressing that there are several different sets of digits in
541 Unicode that are equivalent to 0-9 and are matchable by C<\d> in a
542 regular expression.  If they are used in a single language only, they
543 are in that language's C<Script> and C<Script_Extension>.  If they are
544 used in more than one script, they will be in C<sc=Common>, but only
545 if they are used in many scripts should they be in C<scx=Common>.
546
547 A complete list of scripts and their shortcuts is in L<perluniprops>.
548
549 =head3 B<Use of "Is" Prefix>
550
551 For backward compatibility (with Perl 5.6), all properties mentioned
552 so far may have C<Is> or C<Is_> prepended to their name, so C<\P{Is_Lu}>, for
553 example, is equal to C<\P{Lu}>, and C<\p{IsScript:Arabic}> is equal to
554 C<\p{Arabic}>.
555
556 =head3 B<Blocks>
557
558 In addition to B<scripts>, Unicode also defines B<blocks> of
559 characters.  The difference between scripts and blocks is that the
560 concept of scripts is closer to natural languages, while the concept
561 of blocks is more of an artificial grouping based on groups of Unicode
562 characters with consecutive ordinal values. For example, the "Basic Latin"
563 block is all characters whose ordinals are between 0 and 127, inclusive; in
564 other words, the ASCII characters.  The "Latin" script contains some letters
565 from this as well as several other blocks, like "Latin-1 Supplement",
566 "Latin Extended-A", etc., but it does not contain all the characters from
567 those blocks. It does not, for example, contain the digits 0-9, because
568 those digits are shared across many scripts, and hence are in the
569 C<Common> script.
570
571 For more about scripts versus blocks, see UAX#24 "Unicode Script Property":
572 L<http://www.unicode.org/reports/tr24>
573
574 The C<Script> or C<Script_Extensions> properties are likely to be the
575 ones you want to use when processing
576 natural language; the Block property may occasionally be useful in working
577 with the nuts and bolts of Unicode.
578
579 Block names are matched in the compound form, like C<\p{Block: Arrows}> or
580 C<\p{Blk=Hebrew}>.  Unlike most other properties, only a few block names have a
581 Unicode-defined short name.  But Perl does provide a (slight) shortcut:  You
582 can say, for example C<\p{In_Arrows}> or C<\p{In_Hebrew}>.  For backwards
583 compatibility, the C<In> prefix may be omitted if there is no naming conflict
584 with a script or any other property, and you can even use an C<Is> prefix
585 instead in those cases.  But it is not a good idea to do this, for a couple
586 reasons:
587
588 =over 4
589
590 =item 1
591
592 It is confusing.  There are many naming conflicts, and you may forget some.
593 For example, C<\p{Hebrew}> means the I<script> Hebrew, and NOT the I<block>
594 Hebrew.  But would you remember that 6 months from now?
595
596 =item 2
597
598 It is unstable.  A new version of Unicode may pre-empt the current meaning by
599 creating a property with the same name.  There was a time in very early Unicode
600 releases when C<\p{Hebrew}> would have matched the I<block> Hebrew; now it
601 doesn't.
602
603 =back
604
605 Some people prefer to always use C<\p{Block: foo}> and C<\p{Script: bar}>
606 instead of the shortcuts, whether for clarity, because they can't remember the
607 difference between 'In' and 'Is' anyway, or they aren't confident that those who
608 eventually will read their code will know that difference.
609
610 A complete list of blocks and their shortcuts is in L<perluniprops>.
611
612 =head3 B<Other Properties>
613
614 There are many more properties than the very basic ones described here.
615 A complete list is in L<perluniprops>.
616
617 Unicode defines all its properties in the compound form, so all single-form
618 properties are Perl extensions.  Most of these are just synonyms for the
619 Unicode ones, but some are genuine extensions, including several that are in
620 the compound form.  And quite a few of these are actually recommended by Unicode
621 (in L<http://www.unicode.org/reports/tr18>).
622
623 This section gives some details on all extensions that aren't just
624 synonyms for compound-form Unicode properties
625 (for those properties, you'll have to refer to the
626 L<Unicode Standard|http://www.unicode.org/reports/tr44>.
627
628 =over
629
630 =item B<C<\p{All}>>
631
632 This matches any of the 1_114_112 Unicode code points.  It is a synonym for
633 C<\p{Any}>.
634
635 =item B<C<\p{Alnum}>>
636
637 This matches any C<\p{Alphabetic}> or C<\p{Decimal_Number}> character.
638
639 =item B<C<\p{Any}>>
640
641 This matches any of the 1_114_112 Unicode code points.  It is a synonym for
642 C<\p{All}>.
643
644 =item B<C<\p{ASCII}>>
645
646 This matches any of the 128 characters in the US-ASCII character set,
647 which is a subset of Unicode.
648
649 =item B<C<\p{Assigned}>>
650
651 This matches any assigned code point; that is, any code point whose general
652 category is not Unassigned (or equivalently, not Cn).
653
654 =item B<C<\p{Blank}>>
655
656 This is the same as C<\h> and C<\p{HorizSpace}>:  A character that changes the
657 spacing horizontally.
658
659 =item B<C<\p{Decomposition_Type: Non_Canonical}>>    (Short: C<\p{Dt=NonCanon}>)
660
661 Matches a character that has a non-canonical decomposition.
662
663 To understand the use of this rarely used property=value combination, it is
664 necessary to know some basics about decomposition.
665 Consider a character, say H.  It could appear with various marks around it,
666 such as an acute accent, or a circumflex, or various hooks, circles, arrows,
667 I<etc.>, above, below, to one side or the other, etc.  There are many
668 possibilities among the world's languages.  The number of combinations is
669 astronomical, and if there were a character for each combination, it would
670 soon exhaust Unicode's more than a million possible characters.  So Unicode
671 took a different approach: there is a character for the base H, and a
672 character for each of the possible marks, and these can be variously combined
673 to get a final logical character.  So a logical character--what appears to be a
674 single character--can be a sequence of more than one individual characters.
675 This is called an "extended grapheme cluster";  Perl furnishes the C<\X>
676 regular expression construct to match such sequences.
677
678 But Unicode's intent is to unify the existing character set standards and
679 practices, and several pre-existing standards have single characters that
680 mean the same thing as some of these combinations.  An example is ISO-8859-1,
681 which has quite a few of these in the Latin-1 range, an example being "LATIN
682 CAPITAL LETTER E WITH ACUTE".  Because this character was in this pre-existing
683 standard, Unicode added it to its repertoire.  But this character is considered
684 by Unicode to be equivalent to the sequence consisting of the character
685 "LATIN CAPITAL LETTER E" followed by the character "COMBINING ACUTE ACCENT".
686
687 "LATIN CAPITAL LETTER E WITH ACUTE" is called a "pre-composed" character, and
688 its equivalence with the sequence is called canonical equivalence.  All
689 pre-composed characters are said to have a decomposition (into the equivalent
690 sequence), and the decomposition type is also called canonical.
691
692 However, many more characters have a different type of decomposition, a
693 "compatible" or "non-canonical" decomposition.  The sequences that form these
694 decompositions are not considered canonically equivalent to the pre-composed
695 character.  An example, again in the Latin-1 range, is the "SUPERSCRIPT ONE".
696 It is somewhat like a regular digit 1, but not exactly; its decomposition
697 into the digit 1 is called a "compatible" decomposition, specifically a
698 "super" decomposition.  There are several such compatibility
699 decompositions (see L<http://www.unicode.org/reports/tr44>), including one
700 called "compat", which means some miscellaneous type of decomposition
701 that doesn't fit into the decomposition categories that Unicode has chosen.
702
703 Note that most Unicode characters don't have a decomposition, so their
704 decomposition type is "None".
705
706 For your convenience, Perl has added the C<Non_Canonical> decomposition
707 type to mean any of the several compatibility decompositions.
708
709 =item B<C<\p{Graph}>>
710
711 Matches any character that is graphic.  Theoretically, this means a character
712 that on a printer would cause ink to be used.
713
714 =item B<C<\p{HorizSpace}>>
715
716 This is the same as C<\h> and C<\p{Blank}>:  a character that changes the
717 spacing horizontally.
718
719 =item B<C<\p{In=*}>>
720
721 This is a synonym for C<\p{Present_In=*}>
722
723 =item B<C<\p{PerlSpace}>>
724
725 This is the same as C<\s>, restricted to ASCII, namely C<S<[ \f\n\r\t]>>.
726
727 Mnemonic: Perl's (original) space
728
729 =item B<C<\p{PerlWord}>>
730
731 This is the same as C<\w>, restricted to ASCII, namely C<[A-Za-z0-9_]>
732
733 Mnemonic: Perl's (original) word.
734
735 =item B<C<\p{Posix...}>>
736
737 There are several of these, which are equivalents using the C<\p>
738 notation for Posix classes and are described in
739 L<perlrecharclass/POSIX Character Classes>.
740
741 =item B<C<\p{Present_In: *}>>    (Short: C<\p{In=*}>)
742
743 This property is used when you need to know in what Unicode version(s) a
744 character is.
745
746 The "*" above stands for some two digit Unicode version number, such as
747 C<1.1> or C<4.0>; or the "*" can also be C<Unassigned>.  This property will
748 match the code points whose final disposition has been settled as of the
749 Unicode release given by the version number; C<\p{Present_In: Unassigned}>
750 will match those code points whose meaning has yet to be assigned.
751
752 For example, C<U+0041> "LATIN CAPITAL LETTER A" was present in the very first
753 Unicode release available, which is C<1.1>, so this property is true for all
754 valid "*" versions.  On the other hand, C<U+1EFF> was not assigned until version
755 5.1 when it became "LATIN SMALL LETTER Y WITH LOOP", so the only "*" that
756 would match it are 5.1, 5.2, and later.
757
758 Unicode furnishes the C<Age> property from which this is derived.  The problem
759 with Age is that a strict interpretation of it (which Perl takes) has it
760 matching the precise release a code point's meaning is introduced in.  Thus
761 C<U+0041> would match only 1.1; and C<U+1EFF> only 5.1.  This is not usually what
762 you want.
763
764 Some non-Perl implementations of the Age property may change its meaning to be
765 the same as the Perl Present_In property; just be aware of that.
766
767 Another confusion with both these properties is that the definition is not
768 that the code point has been I<assigned>, but that the meaning of the code point
769 has been I<determined>.  This is because 66 code points will always be
770 unassigned, and so the Age for them is the Unicode version in which the decision
771 to make them so was made.  For example, C<U+FDD0> is to be permanently
772 unassigned to a character, and the decision to do that was made in version 3.1,
773 so C<\p{Age=3.1}> matches this character, as also does C<\p{Present_In: 3.1}> and up.
774
775 =item B<C<\p{Print}>>
776
777 This matches any character that is graphical or blank, except controls.
778
779 =item B<C<\p{SpacePerl}>>
780
781 This is the same as C<\s>, including beyond ASCII.
782
783 Mnemonic: Space, as modified by Perl.  (It doesn't include the vertical tab
784 which both the Posix standard and Unicode consider white space.)
785
786 =item B<C<\p{Title}>> and  B<C<\p{Titlecase}>>
787
788 Under case-sensitive matching, these both match the same code points as
789 C<\p{General Category=Titlecase_Letter}> (C<\p{gc=lt}>).  The difference
790 is that under C</i> caseless matching, these match the same as
791 C<\p{Cased}>, whereas C<\p{gc=lt}> matches C<\p{Cased_Letter>).
792
793 =item B<C<\p{VertSpace}>>
794
795 This is the same as C<\v>:  A character that changes the spacing vertically.
796
797 =item B<C<\p{Word}>>
798
799 This is the same as C<\w>, including over 100_000 characters beyond ASCII.
800
801 =item B<C<\p{XPosix...}>>
802
803 There are several of these, which are the standard Posix classes
804 extended to the full Unicode range.  They are described in
805 L<perlrecharclass/POSIX Character Classes>.
806
807 =back
808
809 =head2 User-Defined Character Properties
810
811 You can define your own binary character properties by defining subroutines
812 whose names begin with "In" or "Is".  The subroutines can be defined in any
813 package.  The user-defined properties can be used in the regular expression
814 C<\p> and C<\P> constructs; if you are using a user-defined property from a
815 package other than the one you are in, you must specify its package in the
816 C<\p> or C<\P> construct.
817
818     # assuming property Is_Foreign defined in Lang::
819     package main;  # property package name required
820     if ($txt =~ /\p{Lang::IsForeign}+/) { ... }
821
822     package Lang;  # property package name not required
823     if ($txt =~ /\p{IsForeign}+/) { ... }
824
825
826 Note that the effect is compile-time and immutable once defined.
827 However, the subroutines are passed a single parameter, which is 0 if
828 case-sensitive matching is in effect and non-zero if caseless matching
829 is in effect.  The subroutine may return different values depending on
830 the value of the flag, and one set of values will immutably be in effect
831 for all case-sensitive matches, and the other set for all case-insensitive
832 matches.
833
834 Note that if the regular expression is tainted, then Perl will die rather
835 than calling the subroutine, where the name of the subroutine is
836 determined by the tainted data.
837
838 The subroutines must return a specially-formatted string, with one
839 or more newline-separated lines.  Each line must be one of the following:
840
841 =over 4
842
843 =item *
844
845 A single hexadecimal number denoting a Unicode code point to include.
846
847 =item *
848
849 Two hexadecimal numbers separated by horizontal whitespace (space or
850 tabular characters) denoting a range of Unicode code points to include.
851
852 =item *
853
854 Something to include, prefixed by "+": a built-in character
855 property (prefixed by "utf8::") or a fully qualified (including package
856 name) user-defined character property,
857 to represent all the characters in that property; two hexadecimal code
858 points for a range; or a single hexadecimal code point.
859
860 =item *
861
862 Something to exclude, prefixed by "-": an existing character
863 property (prefixed by "utf8::") or a fully qualified (including package
864 name) user-defined character property,
865 to represent all the characters in that property; two hexadecimal code
866 points for a range; or a single hexadecimal code point.
867
868 =item *
869
870 Something to negate, prefixed "!": an existing character
871 property (prefixed by "utf8::") or a fully qualified (including package
872 name) user-defined character property,
873 to represent all the characters in that property; two hexadecimal code
874 points for a range; or a single hexadecimal code point.
875
876 =item *
877
878 Something to intersect with, prefixed by "&": an existing character
879 property (prefixed by "utf8::") or a fully qualified (including package
880 name) user-defined character property,
881 for all the characters except the characters in the property; two
882 hexadecimal code points for a range; or a single hexadecimal code point.
883
884 =back
885
886 For example, to define a property that covers both the Japanese
887 syllabaries (hiragana and katakana), you can define
888
889     sub InKana {
890         return <<END;
891     3040\t309F
892     30A0\t30FF
893     END
894     }
895
896 Imagine that the here-doc end marker is at the beginning of the line.
897 Now you can use C<\p{InKana}> and C<\P{InKana}>.
898
899 You could also have used the existing block property names:
900
901     sub InKana {
902         return <<'END';
903     +utf8::InHiragana
904     +utf8::InKatakana
905     END
906     }
907
908 Suppose you wanted to match only the allocated characters,
909 not the raw block ranges: in other words, you want to remove
910 the non-characters:
911
912     sub InKana {
913         return <<'END';
914     +utf8::InHiragana
915     +utf8::InKatakana
916     -utf8::IsCn
917     END
918     }
919
920 The negation is useful for defining (surprise!) negated classes.
921
922     sub InNotKana {
923         return <<'END';
924     !utf8::InHiragana
925     -utf8::InKatakana
926     +utf8::IsCn
927     END
928     }
929
930 This will match all non-Unicode code points, since every one of them is
931 not in Kana.  You can use intersection to exclude these, if desired, as
932 this modified example shows:
933
934     sub InNotKana {
935         return <<'END';
936     !utf8::InHiragana
937     -utf8::InKatakana
938     +utf8::IsCn
939     &utf8::Any
940     END
941     }
942
943 C<&utf8::Any> must be the last line in the definition.
944
945 Intersection is used generally for getting the common characters matched
946 by two (or more) classes.  It's important to remember not to use "&" for
947 the first set; that would be intersecting with nothing, resulting in an
948 empty set.
949
950 (Note that official Unicode properties differ from these in that they
951 automatically exclude non-Unicode code points and a warning is raised if
952 a match is attempted on one of those.)
953
954 =head2 User-Defined Case Mappings (for serious hackers only)
955
956 B<This feature has been removed as of Perl 5.16.>
957 The CPAN module L<Unicode::Casing> provides better functionality without
958 the drawbacks that this feature had.  If you are using a Perl earlier
959 than 5.16, this feature was most fully documented in the 5.14 version of
960 this pod:
961 L<http://perldoc.perl.org/5.14.0/perlunicode.html#User-Defined-Case-Mappings-%28for-serious-hackers-only%29>
962
963 =head2 Character Encodings for Input and Output
964
965 See L<Encode>.
966
967 =head2 Unicode Regular Expression Support Level
968
969 The following list of Unicode supported features for regular expressions describes
970 all features currently directly supported by core Perl.  The references to "Level N"
971 and the section numbers refer to the Unicode Technical Standard #18,
972 "Unicode Regular Expressions", version 13, from August 2008.
973
974 =over 4
975
976 =item *
977
978 Level 1 - Basic Unicode Support
979
980  RL1.1   Hex Notation                     - done          [1]
981  RL1.2   Properties                       - done          [2][3]
982  RL1.2a  Compatibility Properties         - done          [4]
983  RL1.3   Subtraction and Intersection     - MISSING       [5]
984  RL1.4   Simple Word Boundaries           - done          [6]
985  RL1.5   Simple Loose Matches             - done          [7]
986  RL1.6   Line Boundaries                  - MISSING       [8][9]
987  RL1.7   Supplementary Code Points        - done          [10]
988
989  [1]  \x{...}
990  [2]  \p{...} \P{...}
991  [3]  supports not only minimal list, but all Unicode character
992       properties (see Unicode Character Properties above)
993  [4]  \d \D \s \S \w \W \X [:prop:] [:^prop:]
994  [5]  can use regular expression look-ahead [a] or
995       user-defined character properties [b] to emulate set
996       operations
997  [6]  \b \B
998  [7]  note that Perl does Full case-folding in matching (but with
999       bugs), not Simple: for example U+1F88 is equivalent to
1000       U+1F00 U+03B9, instead of just U+1F80.  This difference
1001       matters mainly for certain Greek capital letters with certain
1002       modifiers: the Full case-folding decomposes the letter,
1003       while the Simple case-folding would map it to a single
1004       character.
1005  [8]  should do ^ and $ also on U+000B (\v in C), FF (\f), CR
1006       (\r), CRLF (\r\n), NEL (U+0085), LS (U+2028), and PS
1007       (U+2029); should also affect <>, $., and script line
1008       numbers; should not split lines within CRLF [c] (i.e. there
1009       is no empty line between \r and \n)
1010  [9]  Linebreaking conformant with UAX#14 "Unicode Line Breaking
1011       Algorithm" is available through the Unicode::LineBreaking
1012       module.
1013  [10] UTF-8/UTF-EBDDIC used in Perl allows not only U+10000 to
1014       U+10FFFF but also beyond U+10FFFF
1015
1016 [a] You can mimic class subtraction using lookahead.
1017 For example, what UTS#18 might write as
1018
1019     [{Greek}-[{UNASSIGNED}]]
1020
1021 in Perl can be written as:
1022
1023     (?!\p{Unassigned})\p{InGreekAndCoptic}
1024     (?=\p{Assigned})\p{InGreekAndCoptic}
1025
1026 But in this particular example, you probably really want
1027
1028     \p{GreekAndCoptic}
1029
1030 which will match assigned characters known to be part of the Greek script.
1031
1032 Also see the L<Unicode::Regex::Set> module; it does implement the full
1033 UTS#18 grouping, intersection, union, and removal (subtraction) syntax.
1034
1035 [b] '+' for union, '-' for removal (set-difference), '&' for intersection
1036 (see L</"User-Defined Character Properties">)
1037
1038 [c] Try the C<:crlf> layer (see L<PerlIO>).
1039
1040 =item *
1041
1042 Level 2 - Extended Unicode Support
1043
1044  RL2.1   Canonical Equivalents           - MISSING       [10][11]
1045  RL2.2   Default Grapheme Clusters       - MISSING       [12]
1046  RL2.3   Default Word Boundaries         - MISSING       [14]
1047  RL2.4   Default Loose Matches           - MISSING       [15]
1048  RL2.5   Name Properties                 - DONE
1049  RL2.6   Wildcard Properties             - MISSING
1050
1051  [10] see UAX#15 "Unicode Normalization Forms"
1052  [11] have Unicode::Normalize but not integrated to regexes
1053  [12] have \X but we don't have a "Grapheme Cluster Mode"
1054  [14] see UAX#29, Word Boundaries
1055  [15] This is covered in Chapter 3.13 (in Unicode 6.0)
1056
1057 =item *
1058
1059 Level 3 - Tailored Support
1060
1061  RL3.1   Tailored Punctuation            - MISSING
1062  RL3.2   Tailored Grapheme Clusters      - MISSING       [17][18]
1063  RL3.3   Tailored Word Boundaries        - MISSING
1064  RL3.4   Tailored Loose Matches          - MISSING
1065  RL3.5   Tailored Ranges                 - MISSING
1066  RL3.6   Context Matching                - MISSING       [19]
1067  RL3.7   Incremental Matches             - MISSING
1068       ( RL3.8   Unicode Set Sharing )
1069  RL3.9   Possible Match Sets             - MISSING
1070  RL3.10  Folded Matching                 - MISSING       [20]
1071  RL3.11  Submatchers                     - MISSING
1072
1073  [17] see UAX#10 "Unicode Collation Algorithms"
1074  [18] have Unicode::Collate but not integrated to regexes
1075  [19] have (?<=x) and (?=x), but look-aheads or look-behinds
1076       should see outside of the target substring
1077  [20] need insensitive matching for linguistic features other
1078       than case; for example, hiragana to katakana, wide and
1079       narrow, simplified Han to traditional Han (see UTR#30
1080       "Character Foldings")
1081
1082 =back
1083
1084 =head2 Unicode Encodings
1085
1086 Unicode characters are assigned to I<code points>, which are abstract
1087 numbers.  To use these numbers, various encodings are needed.
1088
1089 =over 4
1090
1091 =item *
1092
1093 UTF-8
1094
1095 UTF-8 is a variable-length (1 to 4 bytes), byte-order independent
1096 encoding. For ASCII (and we really do mean 7-bit ASCII, not another
1097 8-bit encoding), UTF-8 is transparent.
1098
1099 The following table is from Unicode 3.2.
1100
1101  Code Points            1st Byte  2nd Byte  3rd Byte 4th Byte
1102
1103    U+0000..U+007F       00..7F
1104    U+0080..U+07FF     * C2..DF    80..BF
1105    U+0800..U+0FFF       E0      * A0..BF    80..BF
1106    U+1000..U+CFFF       E1..EC    80..BF    80..BF
1107    U+D000..U+D7FF       ED        80..9F    80..BF
1108    U+D800..U+DFFF       +++++ utf16 surrogates, not legal utf8 +++++
1109    U+E000..U+FFFF       EE..EF    80..BF    80..BF
1110   U+10000..U+3FFFF      F0      * 90..BF    80..BF    80..BF
1111   U+40000..U+FFFFF      F1..F3    80..BF    80..BF    80..BF
1112  U+100000..U+10FFFF     F4        80..8F    80..BF    80..BF
1113
1114 Note the gaps marked by "*" before several of the byte entries above.  These are
1115 caused by legal UTF-8 avoiding non-shortest encodings: it is technically
1116 possible to UTF-8-encode a single code point in different ways, but that is
1117 explicitly forbidden, and the shortest possible encoding should always be used
1118 (and that is what Perl does).
1119
1120 Another way to look at it is via bits:
1121
1122                 Code Points  1st Byte  2nd Byte  3rd Byte  4th Byte
1123
1124                    0aaaaaaa  0aaaaaaa
1125            00000bbbbbaaaaaa  110bbbbb  10aaaaaa
1126            ccccbbbbbbaaaaaa  1110cccc  10bbbbbb  10aaaaaa
1127  00000dddccccccbbbbbbaaaaaa  11110ddd  10cccccc  10bbbbbb  10aaaaaa
1128
1129 As you can see, the continuation bytes all begin with "10", and the
1130 leading bits of the start byte tell how many bytes there are in the
1131 encoded character.
1132
1133 The original UTF-8 specification allowed up to 6 bytes, to allow
1134 encoding of numbers up to 0x7FFF_FFFF.  Perl continues to allow those,
1135 and has extended that up to 13 bytes to encode code points up to what
1136 can fit in a 64-bit word.  However, Perl will warn if you output any of
1137 these as being non-portable; and under strict UTF-8 input protocols,
1138 they are forbidden.
1139
1140 The Unicode non-character code points are also disallowed in UTF-8 in
1141 "open interchange".  See L</Non-character code points>.
1142
1143 =item *
1144
1145 UTF-EBCDIC
1146
1147 Like UTF-8 but EBCDIC-safe, in the way that UTF-8 is ASCII-safe.
1148
1149 =item *
1150
1151 UTF-16, UTF-16BE, UTF-16LE, Surrogates, and BOMs (Byte Order Marks)
1152
1153 The followings items are mostly for reference and general Unicode
1154 knowledge, Perl doesn't use these constructs internally.
1155
1156 Like UTF-8, UTF-16 is a variable-width encoding, but where
1157 UTF-8 uses 8-bit code units, UTF-16 uses 16-bit code units.
1158 All code points occupy either 2 or 4 bytes in UTF-16: code points
1159 C<U+0000..U+FFFF> are stored in a single 16-bit unit, and code
1160 points C<U+10000..U+10FFFF> in two 16-bit units.  The latter case is
1161 using I<surrogates>, the first 16-bit unit being the I<high
1162 surrogate>, and the second being the I<low surrogate>.
1163
1164 Surrogates are code points set aside to encode the C<U+10000..U+10FFFF>
1165 range of Unicode code points in pairs of 16-bit units.  The I<high
1166 surrogates> are the range C<U+D800..U+DBFF> and the I<low surrogates>
1167 are the range C<U+DC00..U+DFFF>.  The surrogate encoding is
1168
1169     $hi = ($uni - 0x10000) / 0x400 + 0xD800;
1170     $lo = ($uni - 0x10000) % 0x400 + 0xDC00;
1171
1172 and the decoding is
1173
1174     $uni = 0x10000 + ($hi - 0xD800) * 0x400 + ($lo - 0xDC00);
1175
1176 Because of the 16-bitness, UTF-16 is byte-order dependent.  UTF-16
1177 itself can be used for in-memory computations, but if storage or
1178 transfer is required either UTF-16BE (big-endian) or UTF-16LE
1179 (little-endian) encodings must be chosen.
1180
1181 This introduces another problem: what if you just know that your data
1182 is UTF-16, but you don't know which endianness?  Byte Order Marks, or
1183 BOMs, are a solution to this.  A special character has been reserved
1184 in Unicode to function as a byte order marker: the character with the
1185 code point C<U+FEFF> is the BOM.
1186
1187 The trick is that if you read a BOM, you will know the byte order,
1188 since if it was written on a big-endian platform, you will read the
1189 bytes C<0xFE 0xFF>, but if it was written on a little-endian platform,
1190 you will read the bytes C<0xFF 0xFE>.  (And if the originating platform
1191 was writing in UTF-8, you will read the bytes C<0xEF 0xBB 0xBF>.)
1192
1193 The way this trick works is that the character with the code point
1194 C<U+FFFE> is not supposed to be in input streams, so the
1195 sequence of bytes C<0xFF 0xFE> is unambiguously "BOM, represented in
1196 little-endian format" and cannot be C<U+FFFE>, represented in big-endian
1197 format".
1198
1199 Surrogates have no meaning in Unicode outside their use in pairs to
1200 represent other code points.  However, Perl allows them to be
1201 represented individually internally, for example by saying
1202 C<chr(0xD801)>, so that all code points, not just those valid for open
1203 interchange, are
1204 representable.  Unicode does define semantics for them, such as their
1205 General Category is "Cs".  But because their use is somewhat dangerous,
1206 Perl will warn (using the warning category "surrogate", which is a
1207 sub-category of "utf8") if an attempt is made
1208 to do things like take the lower case of one, or match
1209 case-insensitively, or to output them.  (But don't try this on Perls
1210 before 5.14.)
1211
1212 =item *
1213
1214 UTF-32, UTF-32BE, UTF-32LE
1215
1216 The UTF-32 family is pretty much like the UTF-16 family, expect that
1217 the units are 32-bit, and therefore the surrogate scheme is not
1218 needed.  UTF-32 is a fixed-width encoding.  The BOM signatures are
1219 C<0x00 0x00 0xFE 0xFF> for BE and C<0xFF 0xFE 0x00 0x00> for LE.
1220
1221 =item *
1222
1223 UCS-2, UCS-4
1224
1225 Legacy, fixed-width encodings defined by the ISO 10646 standard.  UCS-2 is a 16-bit
1226 encoding.  Unlike UTF-16, UCS-2 is not extensible beyond C<U+FFFF>,
1227 because it does not use surrogates.  UCS-4 is a 32-bit encoding,
1228 functionally identical to UTF-32 (the difference being that
1229 UCS-4 forbids neither surrogates nor code points larger than 0x10_FFFF).
1230
1231 =item *
1232
1233 UTF-7
1234
1235 A seven-bit safe (non-eight-bit) encoding, which is useful if the
1236 transport or storage is not eight-bit safe.  Defined by RFC 2152.
1237
1238 =back
1239
1240 =head2 Non-character code points
1241
1242 66 code points are set aside in Unicode as "non-character code points".
1243 These all have the Unassigned (Cn) General Category, and they never will
1244 be assigned.  These are never supposed to be in legal Unicode input
1245 streams, so that code can use them as sentinels that can be mixed in
1246 with character data, and they always will be distinguishable from that data.
1247 To keep them out of Perl input streams, strict UTF-8 should be
1248 specified, such as by using the layer C<:encoding('UTF-8')>.  The
1249 non-character code points are the 32 between U+FDD0 and U+FDEF, and the
1250 34 code points U+FFFE, U+FFFF, U+1FFFE, U+1FFFF, ... U+10FFFE, U+10FFFF.
1251 Some people are under the mistaken impression that these are "illegal",
1252 but that is not true.  An application or cooperating set of applications
1253 can legally use them at will internally; but these code points are
1254 "illegal for open interchange".  Therefore, Perl will not accept these
1255 from input streams unless lax rules are being used, and will warn
1256 (using the warning category "nonchar", which is a sub-category of "utf8") if
1257 an attempt is made to output them.
1258
1259 =head2 Beyond Unicode code points
1260
1261 The maximum Unicode code point is U+10FFFF.  But Perl accepts code
1262 points up to the maximum permissible unsigned number available on the
1263 platform.  However, Perl will not accept these from input streams unless
1264 lax rules are being used, and will warn (using the warning category
1265 "non_unicode", which is a sub-category of "utf8") if an attempt is made to
1266 operate on or output them.  For example, C<uc(0x11_0000)> will generate
1267 this warning, returning the input parameter as its result, as the upper
1268 case of every non-Unicode code point is the code point itself.
1269
1270 =head2 Security Implications of Unicode
1271
1272 Read L<Unicode Security Considerations|http://www.unicode.org/reports/tr36>.
1273 Also, note the following:
1274
1275 =over 4
1276
1277 =item *
1278
1279 Malformed UTF-8
1280
1281 Unfortunately, the original specification of UTF-8 leaves some room for
1282 interpretation of how many bytes of encoded output one should generate
1283 from one input Unicode character.  Strictly speaking, the shortest
1284 possible sequence of UTF-8 bytes should be generated,
1285 because otherwise there is potential for an input buffer overflow at
1286 the receiving end of a UTF-8 connection.  Perl always generates the
1287 shortest length UTF-8, and with warnings on, Perl will warn about
1288 non-shortest length UTF-8 along with other malformations, such as the
1289 surrogates, which are not Unicode code points valid for interchange.
1290
1291 =item *
1292
1293 Regular expression pattern matching may surprise you if you're not
1294 accustomed to Unicode.  Starting in Perl 5.14, several pattern
1295 modifiers are available to control this, called the character set
1296 modifiers.  Details are given in L<perlre/Character set modifiers>.
1297
1298 =back
1299
1300 As discussed elsewhere, Perl has one foot (two hooves?) planted in
1301 each of two worlds: the old world of bytes and the new world of
1302 characters, upgrading from bytes to characters when necessary.
1303 If your legacy code does not explicitly use Unicode, no automatic
1304 switch-over to characters should happen.  Characters shouldn't get
1305 downgraded to bytes, either.  It is possible to accidentally mix bytes
1306 and characters, however (see L<perluniintro>), in which case C<\w> in
1307 regular expressions might start behaving differently (unless the C</a>
1308 modifier is in effect).  Review your code.  Use warnings and the C<strict> pragma.
1309
1310 =head2 Unicode in Perl on EBCDIC
1311
1312 The way Unicode is handled on EBCDIC platforms is still
1313 experimental.  On such platforms, references to UTF-8 encoding in this
1314 document and elsewhere should be read as meaning the UTF-EBCDIC
1315 specified in Unicode Technical Report 16, unless ASCII vs. EBCDIC issues
1316 are specifically discussed. There is no C<utfebcdic> pragma or
1317 ":utfebcdic" layer; rather, "utf8" and ":utf8" are reused to mean
1318 the platform's "natural" 8-bit encoding of Unicode. See L<perlebcdic>
1319 for more discussion of the issues.
1320
1321 =head2 Locales
1322
1323 See L<perllocale/Unicode and UTF-8>
1324
1325 =head2 When Unicode Does Not Happen
1326
1327 While Perl does have extensive ways to input and output in Unicode,
1328 and a few other "entry points" like the @ARGV array (which can sometimes be
1329 interpreted as UTF-8), there are still many places where Unicode
1330 (in some encoding or another) could be given as arguments or received as
1331 results, or both, but it is not.
1332
1333 The following are such interfaces.  Also, see L</The "Unicode Bug">.
1334 For all of these interfaces Perl
1335 currently (as of 5.8.3) simply assumes byte strings both as arguments
1336 and results, or UTF-8 strings if the (problematic) C<encoding> pragma has been used.
1337
1338 One reason that Perl does not attempt to resolve the role of Unicode in
1339 these situations is that the answers are highly dependent on the operating
1340 system and the file system(s).  For example, whether filenames can be
1341 in Unicode and in exactly what kind of encoding, is not exactly a
1342 portable concept.  Similarly for C<qx> and C<system>: how well will the
1343 "command-line interface" (and which of them?) handle Unicode?
1344
1345 =over 4
1346
1347 =item *
1348
1349 chdir, chmod, chown, chroot, exec, link, lstat, mkdir,
1350 rename, rmdir, stat, symlink, truncate, unlink, utime, -X
1351
1352 =item *
1353
1354 %ENV
1355
1356 =item *
1357
1358 glob (aka the <*>)
1359
1360 =item *
1361
1362 open, opendir, sysopen
1363
1364 =item *
1365
1366 qx (aka the backtick operator), system
1367
1368 =item *
1369
1370 readdir, readlink
1371
1372 =back
1373
1374 =head2 The "Unicode Bug"
1375
1376 The term, "Unicode bug" has been applied to an inconsistency
1377 on ASCII platforms with the
1378 Unicode code points in the Latin-1 Supplement block, that
1379 is, between 128 and 255.  Without a locale specified, unlike all other
1380 characters or code points, these characters have very different semantics in
1381 byte semantics versus character semantics, unless
1382 C<use feature 'unicode_strings'> is specified, directly or indirectly.
1383 (It is indirectly specified by a C<use v5.12> or higher.)
1384
1385 In character semantics these upper-Latin1 characters are interpreted as
1386 Unicode code points, which means
1387 they have the same semantics as Latin-1 (ISO-8859-1).
1388
1389 In byte semantics (without C<unicode_strings>), they are considered to
1390 be unassigned characters, meaning that the only semantics they have is
1391 their ordinal numbers, and that they are
1392 not members of various character classes.  None are considered to match C<\w>
1393 for example, but all match C<\W>.
1394
1395 Perl 5.12.0 added C<unicode_strings> to force character semantics on
1396 these code points in some circumstances, which fixed portions of the
1397 bug; Perl 5.14.0 fixed almost all of it; and Perl 5.16.0 fixed the
1398 remainder (so far as we know, anyway).  The lesson here is to enable
1399 C<unicode_strings> to avoid the headaches described below.
1400
1401 The old, problematic behavior affects these areas:
1402
1403 =over 4
1404
1405 =item *
1406
1407 Changing the case of a scalar, that is, using C<uc()>, C<ucfirst()>, C<lc()>,
1408 and C<lcfirst()>, or C<\L>, C<\U>, C<\u> and C<\l> in double-quotish
1409 contexts, such as regular expression substitutions.
1410 Under C<unicode_strings> starting in Perl 5.12.0, character semantics are
1411 generally used.  See L<perlfunc/lc> for details on how this works
1412 in combination with various other pragmas.
1413
1414 =item *
1415
1416 Using caseless (C</i>) regular expression matching.
1417 Starting in Perl 5.14.0, regular expressions compiled within
1418 the scope of C<unicode_strings> use character semantics
1419 even when executed or compiled into larger
1420 regular expressions outside the scope.
1421
1422 =item *
1423
1424 Matching any of several properties in regular expressions, namely C<\b>,
1425 C<\B>, C<\s>, C<\S>, C<\w>, C<\W>, and all the Posix character classes
1426 I<except> C<[[:ascii:]]>.
1427 Starting in Perl 5.14.0, regular expressions compiled within
1428 the scope of C<unicode_strings> use character semantics
1429 even when executed or compiled into larger
1430 regular expressions outside the scope.
1431
1432 =item *
1433
1434 In C<quotemeta> or its inline equivalent C<\Q>, no code points above 127
1435 are quoted in UTF-8 encoded strings, but in byte encoded strings, code
1436 points between 128-255 are always quoted.
1437 Starting in Perl 5.16.0, consistent quoting rules are used within the
1438 scope of C<unicode_strings>, as described in L<perlfunc/quotemeta>.
1439
1440 =back
1441
1442 This behavior can lead to unexpected results in which a string's semantics
1443 suddenly change if a code point above 255 is appended to or removed from it,
1444 which changes the string's semantics from byte to character or vice versa.  As
1445 an example, consider the following program and its output:
1446
1447  $ perl -le'
1448      no feature 'unicode_strings';
1449      $s1 = "\xC2";
1450      $s2 = "\x{2660}";
1451      for ($s1, $s2, $s1.$s2) {
1452          print /\w/ || 0;
1453      }
1454  '
1455  0
1456  0
1457  1
1458
1459 If there's no C<\w> in C<s1> or in C<s2>, why does their concatenation have one?
1460
1461 This anomaly stems from Perl's attempt to not disturb older programs that
1462 didn't use Unicode, and hence had no semantics for characters outside of the
1463 ASCII range (except in a locale), along with Perl's desire to add Unicode
1464 support seamlessly.  The result wasn't seamless: these characters were
1465 orphaned.
1466
1467 For Perls earlier than those described above, or when a string is passed
1468 to a function outside the subpragma's scope, a workaround is to always
1469 call C<utf8::upgrade($string)>,
1470 or to use the standard module L<Encode>.   Also, a scalar that has any characters
1471 whose ordinal is above 0x100, or which were specified using either of the
1472 C<\N{...}> notations, will automatically have character semantics.
1473
1474 =head2 Forcing Unicode in Perl (Or Unforcing Unicode in Perl)
1475
1476 Sometimes (see L</"When Unicode Does Not Happen"> or L</The "Unicode Bug">)
1477 there are situations where you simply need to force a byte
1478 string into UTF-8, or vice versa.  The low-level calls
1479 utf8::upgrade($bytestring) and utf8::downgrade($utf8string[, FAIL_OK]) are
1480 the answers.
1481
1482 Note that utf8::downgrade() can fail if the string contains characters
1483 that don't fit into a byte.
1484
1485 Calling either function on a string that already is in the desired state is a
1486 no-op.
1487
1488 =head2 Using Unicode in XS
1489
1490 If you want to handle Perl Unicode in XS extensions, you may find the
1491 following C APIs useful.  See also L<perlguts/"Unicode Support"> for an
1492 explanation about Unicode at the XS level, and L<perlapi> for the API
1493 details.
1494
1495 =over 4
1496
1497 =item *
1498
1499 C<DO_UTF8(sv)> returns true if the C<UTF8> flag is on and the bytes
1500 pragma is not in effect.  C<SvUTF8(sv)> returns true if the C<UTF8>
1501 flag is on; the bytes pragma is ignored.  The C<UTF8> flag being on
1502 does B<not> mean that there are any characters of code points greater
1503 than 255 (or 127) in the scalar or that there are even any characters
1504 in the scalar.  What the C<UTF8> flag means is that the sequence of
1505 octets in the representation of the scalar is the sequence of UTF-8
1506 encoded code points of the characters of a string.  The C<UTF8> flag
1507 being off means that each octet in this representation encodes a
1508 single character with code point 0..255 within the string.  Perl's
1509 Unicode model is not to use UTF-8 until it is absolutely necessary.
1510
1511 =item *
1512
1513 C<uvchr_to_utf8(buf, chr)> writes a Unicode character code point into
1514 a buffer encoding the code point as UTF-8, and returns a pointer
1515 pointing after the UTF-8 bytes.  It works appropriately on EBCDIC machines.
1516
1517 =item *
1518
1519 C<utf8_to_uvchr_buf(buf, bufend, lenp)> reads UTF-8 encoded bytes from a
1520 buffer and
1521 returns the Unicode character code point and, optionally, the length of
1522 the UTF-8 byte sequence.  It works appropriately on EBCDIC machines.
1523
1524 =item *
1525
1526 C<utf8_length(start, end)> returns the length of the UTF-8 encoded buffer
1527 in characters.  C<sv_len_utf8(sv)> returns the length of the UTF-8 encoded
1528 scalar.
1529
1530 =item *
1531
1532 C<sv_utf8_upgrade(sv)> converts the string of the scalar to its UTF-8
1533 encoded form.  C<sv_utf8_downgrade(sv)> does the opposite, if
1534 possible.  C<sv_utf8_encode(sv)> is like sv_utf8_upgrade except that
1535 it does not set the C<UTF8> flag.  C<sv_utf8_decode()> does the
1536 opposite of C<sv_utf8_encode()>.  Note that none of these are to be
1537 used as general-purpose encoding or decoding interfaces: C<use Encode>
1538 for that.  C<sv_utf8_upgrade()> is affected by the encoding pragma
1539 but C<sv_utf8_downgrade()> is not (since the encoding pragma is
1540 designed to be a one-way street).
1541
1542 =item *
1543
1544 C<is_utf8_string(buf, len)> returns true if C<len> bytes of the buffer
1545 are valid UTF-8.
1546
1547 =item *
1548
1549 C<is_utf8_char(s)> returns true if the pointer points to a valid UTF-8
1550 character.  However, this function should not be used because of
1551 security concerns.  Instead, use C<is_utf8_string()>.
1552
1553 =item *
1554
1555 C<UTF8SKIP(buf)> will return the number of bytes in the UTF-8 encoded
1556 character in the buffer.  C<UNISKIP(chr)> will return the number of bytes
1557 required to UTF-8-encode the Unicode character code point.  C<UTF8SKIP()>
1558 is useful for example for iterating over the characters of a UTF-8
1559 encoded buffer; C<UNISKIP()> is useful, for example, in computing
1560 the size required for a UTF-8 encoded buffer.
1561
1562 =item *
1563
1564 C<utf8_distance(a, b)> will tell the distance in characters between the
1565 two pointers pointing to the same UTF-8 encoded buffer.
1566
1567 =item *
1568
1569 C<utf8_hop(s, off)> will return a pointer to a UTF-8 encoded buffer
1570 that is C<off> (positive or negative) Unicode characters displaced
1571 from the UTF-8 buffer C<s>.  Be careful not to overstep the buffer:
1572 C<utf8_hop()> will merrily run off the end or the beginning of the
1573 buffer if told to do so.
1574
1575 =item *
1576
1577 C<pv_uni_display(dsv, spv, len, pvlim, flags)> and
1578 C<sv_uni_display(dsv, ssv, pvlim, flags)> are useful for debugging the
1579 output of Unicode strings and scalars.  By default they are useful
1580 only for debugging--they display B<all> characters as hexadecimal code
1581 points--but with the flags C<UNI_DISPLAY_ISPRINT>,
1582 C<UNI_DISPLAY_BACKSLASH>, and C<UNI_DISPLAY_QQ> you can make the
1583 output more readable.
1584
1585 =item *
1586
1587 C<foldEQ_utf8(s1, pe1, l1, u1, s2, pe2, l2, u2)> can be used to
1588 compare two strings case-insensitively in Unicode.  For case-sensitive
1589 comparisons you can just use C<memEQ()> and C<memNE()> as usual, except
1590 if one string is in utf8 and the other isn't.
1591
1592 =back
1593
1594 For more information, see L<perlapi>, and F<utf8.c> and F<utf8.h>
1595 in the Perl source code distribution.
1596
1597 =head2 Hacking Perl to work on earlier Unicode versions (for very serious hackers only)
1598
1599 Perl by default comes with the latest supported Unicode version built in, but
1600 you can change to use any earlier one.
1601
1602 Download the files in the desired version of Unicode from the Unicode web
1603 site L<http://www.unicode.org>).  These should replace the existing files in
1604 F<lib/unicore> in the Perl source tree.  Follow the instructions in
1605 F<README.perl> in that directory to change some of their names, and then build
1606 perl (see L<INSTALL>).
1607
1608 =head1 BUGS
1609
1610 =head2 Interaction with Locales
1611
1612 See L<perllocale/Unicode and UTF-8>
1613
1614 =head2 Problems with characters in the Latin-1 Supplement range
1615
1616 See L</The "Unicode Bug">
1617
1618 =head2 Interaction with Extensions
1619
1620 When Perl exchanges data with an extension, the extension should be
1621 able to understand the UTF8 flag and act accordingly. If the
1622 extension doesn't recognize that flag, it's likely that the extension
1623 will return incorrectly-flagged data.
1624
1625 So if you're working with Unicode data, consult the documentation of
1626 every module you're using if there are any issues with Unicode data
1627 exchange. If the documentation does not talk about Unicode at all,
1628 suspect the worst and probably look at the source to learn how the
1629 module is implemented. Modules written completely in Perl shouldn't
1630 cause problems. Modules that directly or indirectly access code written
1631 in other programming languages are at risk.
1632
1633 For affected functions, the simple strategy to avoid data corruption is
1634 to always make the encoding of the exchanged data explicit. Choose an
1635 encoding that you know the extension can handle. Convert arguments passed
1636 to the extensions to that encoding and convert results back from that
1637 encoding. Write wrapper functions that do the conversions for you, so
1638 you can later change the functions when the extension catches up.
1639
1640 To provide an example, let's say the popular Foo::Bar::escape_html
1641 function doesn't deal with Unicode data yet. The wrapper function
1642 would convert the argument to raw UTF-8 and convert the result back to
1643 Perl's internal representation like so:
1644
1645     sub my_escape_html ($) {
1646         my($what) = shift;
1647         return unless defined $what;
1648         Encode::decode_utf8(Foo::Bar::escape_html(
1649                                          Encode::encode_utf8($what)));
1650     }
1651
1652 Sometimes, when the extension does not convert data but just stores
1653 and retrieves them, you will be able to use the otherwise
1654 dangerous Encode::_utf8_on() function. Let's say the popular
1655 C<Foo::Bar> extension, written in C, provides a C<param> method that
1656 lets you store and retrieve data according to these prototypes:
1657
1658     $self->param($name, $value);            # set a scalar
1659     $value = $self->param($name);           # retrieve a scalar
1660
1661 If it does not yet provide support for any encoding, one could write a
1662 derived class with such a C<param> method:
1663
1664     sub param {
1665       my($self,$name,$value) = @_;
1666       utf8::upgrade($name);     # make sure it is UTF-8 encoded
1667       if (defined $value) {
1668         utf8::upgrade($value);  # make sure it is UTF-8 encoded
1669         return $self->SUPER::param($name,$value);
1670       } else {
1671         my $ret = $self->SUPER::param($name);
1672         Encode::_utf8_on($ret); # we know, it is UTF-8 encoded
1673         return $ret;
1674       }
1675     }
1676
1677 Some extensions provide filters on data entry/exit points, such as
1678 DB_File::filter_store_key and family. Look out for such filters in
1679 the documentation of your extensions, they can make the transition to
1680 Unicode data much easier.
1681
1682 =head2 Speed
1683
1684 Some functions are slower when working on UTF-8 encoded strings than
1685 on byte encoded strings.  All functions that need to hop over
1686 characters such as length(), substr() or index(), or matching regular
1687 expressions can work B<much> faster when the underlying data are
1688 byte-encoded.
1689
1690 In Perl 5.8.0 the slowness was often quite spectacular; in Perl 5.8.1
1691 a caching scheme was introduced which will hopefully make the slowness
1692 somewhat less spectacular, at least for some operations.  In general,
1693 operations with UTF-8 encoded strings are still slower. As an example,
1694 the Unicode properties (character classes) like C<\p{Nd}> are known to
1695 be quite a bit slower (5-20 times) than their simpler counterparts
1696 like C<\d> (then again, there are hundreds of Unicode characters matching C<Nd>
1697 compared with the 10 ASCII characters matching C<d>).
1698
1699 =head2 Problems on EBCDIC platforms
1700
1701 There are several known problems with Perl on EBCDIC platforms.  If you
1702 want to use Perl there, send email to perlbug@perl.org.
1703
1704 In earlier versions, when byte and character data were concatenated,
1705 the new string was sometimes created by
1706 decoding the byte strings as I<ISO 8859-1 (Latin-1)>, even if the
1707 old Unicode string used EBCDIC.
1708
1709 If you find any of these, please report them as bugs.
1710
1711 =head2 Porting code from perl-5.6.X
1712
1713 Perl 5.8 has a different Unicode model from 5.6. In 5.6 the programmer
1714 was required to use the C<utf8> pragma to declare that a given scope
1715 expected to deal with Unicode data and had to make sure that only
1716 Unicode data were reaching that scope. If you have code that is
1717 working with 5.6, you will need some of the following adjustments to
1718 your code. The examples are written such that the code will continue
1719 to work under 5.6, so you should be safe to try them out.
1720
1721 =over 3
1722
1723 =item *
1724
1725 A filehandle that should read or write UTF-8
1726
1727   if ($] > 5.007) {
1728     binmode $fh, ":encoding(utf8)";
1729   }
1730
1731 =item *
1732
1733 A scalar that is going to be passed to some extension
1734
1735 Be it Compress::Zlib, Apache::Request or any extension that has no
1736 mention of Unicode in the manpage, you need to make sure that the
1737 UTF8 flag is stripped off. Note that at the time of this writing
1738 (October 2002) the mentioned modules are not UTF-8-aware. Please
1739 check the documentation to verify if this is still true.
1740
1741   if ($] > 5.007) {
1742     require Encode;
1743     $val = Encode::encode_utf8($val); # make octets
1744   }
1745
1746 =item *
1747
1748 A scalar we got back from an extension
1749
1750 If you believe the scalar comes back as UTF-8, you will most likely
1751 want the UTF8 flag restored:
1752
1753   if ($] > 5.007) {
1754     require Encode;
1755     $val = Encode::decode_utf8($val);
1756   }
1757
1758 =item *
1759
1760 Same thing, if you are really sure it is UTF-8
1761
1762   if ($] > 5.007) {
1763     require Encode;
1764     Encode::_utf8_on($val);
1765   }
1766
1767 =item *
1768
1769 A wrapper for fetchrow_array and fetchrow_hashref
1770
1771 When the database contains only UTF-8, a wrapper function or method is
1772 a convenient way to replace all your fetchrow_array and
1773 fetchrow_hashref calls. A wrapper function will also make it easier to
1774 adapt to future enhancements in your database driver. Note that at the
1775 time of this writing (October 2002), the DBI has no standardized way
1776 to deal with UTF-8 data. Please check the documentation to verify if
1777 that is still true.
1778
1779   sub fetchrow {
1780     # $what is one of fetchrow_{array,hashref}
1781     my($self, $sth, $what) = @_;
1782     if ($] < 5.007) {
1783       return $sth->$what;
1784     } else {
1785       require Encode;
1786       if (wantarray) {
1787         my @arr = $sth->$what;
1788         for (@arr) {
1789           defined && /[^\000-\177]/ && Encode::_utf8_on($_);
1790         }
1791         return @arr;
1792       } else {
1793         my $ret = $sth->$what;
1794         if (ref $ret) {
1795           for my $k (keys %$ret) {
1796             defined
1797             && /[^\000-\177]/
1798             && Encode::_utf8_on($_) for $ret->{$k};
1799           }
1800           return $ret;
1801         } else {
1802           defined && /[^\000-\177]/ && Encode::_utf8_on($_) for $ret;
1803           return $ret;
1804         }
1805       }
1806     }
1807   }
1808
1809
1810 =item *
1811
1812 A large scalar that you know can only contain ASCII
1813
1814 Scalars that contain only ASCII and are marked as UTF-8 are sometimes
1815 a drag to your program. If you recognize such a situation, just remove
1816 the UTF8 flag:
1817
1818   utf8::downgrade($val) if $] > 5.007;
1819
1820 =back
1821
1822 =head1 SEE ALSO
1823
1824 L<perlunitut>, L<perluniintro>, L<perluniprops>, L<Encode>, L<open>, L<utf8>, L<bytes>,
1825 L<perlretut>, L<perlvar/"${^UNICODE}">
1826 L<http://www.unicode.org/reports/tr44>).
1827
1828 =cut