This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
2 more VMS test tweaks
[perl5.git] / pod / perlunicode.pod
CommitLineData
393fec97
GS
1=head1 NAME
2
3perlunicode - Unicode support in Perl
4
5=head1 DESCRIPTION
6
0a1f2d14 7=head2 Important Caveats
21bad921 8
776f8809
JH
9WARNING: While the implementation of Unicode support in Perl is now
10fairly complete it is still evolving to some extent.
21bad921 11
75daf61c
JH
12In particular the way Unicode is handled on EBCDIC platforms is still
13rather experimental. On such a platform references to UTF-8 encoding
14in this document and elsewhere should be read as meaning UTF-EBCDIC as
15specified in Unicode Technical Report 16 unless ASCII vs EBCDIC issues
16are specifically discussed. There is no C<utfebcdic> pragma or
17":utfebcdic" layer, rather "utf8" and ":utf8" are re-used to mean
18platform's "natural" 8-bit encoding of Unicode. See L<perlebcdic> for
19more discussion of the issues.
0a1f2d14
NIS
20
21The following areas are still under development.
21bad921 22
13a2d996 23=over 4
21bad921
GS
24
25=item Input and Output Disciplines
26
75daf61c
JH
27A filehandle can be marked as containing perl's internal Unicode
28encoding (UTF-8 or UTF-EBCDIC) by opening it with the ":utf8" layer.
0a1f2d14 29Other encodings can be converted to perl's encoding on input, or from
75daf61c
JH
30perl's encoding on output by use of the ":encoding()" layer. There is
31not yet a clean way to mark the Perl source itself as being in an
32particular encoding.
21bad921
GS
33
34=item Regular Expressions
35
e6739005
JH
36The regular expression compiler does now attempt to produce
37polymorphic opcodes. That is the pattern should now adapt to the data
75daf61c
JH
38and automatically switch to the Unicode character scheme when
39presented with Unicode data, or a traditional byte scheme when
40presented with byte data. The implementation is still new and
41(particularly on EBCDIC platforms) may need further work.
21bad921 42
ad0029c4 43=item C<use utf8> still needed to enable UTF-8/UTF-EBCDIC in scripts
21bad921 44
75daf61c
JH
45The C<utf8> pragma implements the tables used for Unicode support.
46These tables are automatically loaded on demand, so the C<utf8> pragma
47need not normally be used.
21bad921 48
75daf61c 49However, as a compatibility measure, this pragma must be explicitly
ad0029c4
JH
50used to enable recognition of UTF-8 in the Perl scripts themselves on
51ASCII based machines or recognize UTF-EBCDIC on EBCDIC based machines.
7dedd01f
JH
52B<NOTE: this should be the only place where an explicit C<use utf8> is
53needed>.
21bad921
GS
54
55=back
56
57=head2 Byte and Character semantics
393fec97
GS
58
59Beginning with version 5.6, Perl uses logically wide characters to
60represent strings internally. This internal representation of strings
b3419ed8 61uses either the UTF-8 or the UTF-EBCDIC encoding.
393fec97 62
75daf61c
JH
63In future, Perl-level operations can be expected to work with
64characters rather than bytes, in general.
393fec97 65
75daf61c
JH
66However, as strictly an interim compatibility measure, Perl aims to
67provide a safe migration path from byte semantics to character
68semantics for programs. For operations where Perl can unambiguously
69decide that the input data is characters, Perl now switches to
70character semantics. For operations where this determination cannot
71be made without additional information from the user, Perl decides in
72favor of compatibility, and chooses to use byte semantics.
8cbd9a7a
GS
73
74This behavior preserves compatibility with earlier versions of Perl,
75which allowed byte semantics in Perl operations, but only as long as
76none of the program's inputs are marked as being as source of Unicode
77character data. Such data may come from filehandles, from calls to
78external programs, from information provided by the system (such as %ENV),
21bad921 79or from literals and constants in the source text.
8cbd9a7a 80
75daf61c
JH
81If the C<-C> command line switch is used, (or the
82${^WIDE_SYSTEM_CALLS} global flag is set to C<1>), all system calls
83will use the corresponding wide character APIs. Note that this is
84currently only implemented on Windows since other platforms API
85standard on this area.
8cbd9a7a 86
75daf61c
JH
87Regardless of the above, the C<bytes> pragma can always be used to
88force byte semantics in a particular lexical scope. See L<bytes>.
8cbd9a7a
GS
89
90The C<utf8> pragma is primarily a compatibility device that enables
75daf61c 91recognition of UTF-(8|EBCDIC) in literals encountered by the parser.
7dedd01f
JH
92Note that this pragma is only required until a future version of Perl
93in which character semantics will become the default. This pragma may
94then become a no-op. See L<utf8>.
8cbd9a7a
GS
95
96Unless mentioned otherwise, Perl operators will use character semantics
97when they are dealing with Unicode data, and byte semantics otherwise.
98Thus, character semantics for these operations apply transparently; if
99the input data came from a Unicode source (for example, by adding a
100character encoding discipline to the filehandle whence it came, or a
101literal UTF-8 string constant in the program), character semantics
102apply; otherwise, byte semantics are in effect. To force byte semantics
8058d7ab 103on Unicode data, the C<bytes> pragma should be used.
393fec97 104
7dedd01f
JH
105Notice that if you have a string with byte semantics and you then
106add character data into it, the bytes will be upgraded I<as if they
107were ISO 8859-1 (Latin-1)> (or if in EBCDIC, after a translation
108to ISO 8859-1).
109
393fec97 110Under character semantics, many operations that formerly operated on
75daf61c
JH
111bytes change to operating on characters. For ASCII data this makes no
112difference, because UTF-8 stores ASCII in single bytes, but for any
113character greater than C<chr(127)>, the character B<may> be stored in
393fec97 114a sequence of two or more bytes, all of which have the high bit set.
2796c109
JH
115
116For C1 controls or Latin 1 characters on an EBCDIC platform the
117character may be stored in a UTF-EBCDIC multi byte sequence. But by
118and large, the user need not worry about this, because Perl hides it
119from the user. A character in Perl is logically just a number ranging
120from 0 to 2**32 or so. Larger characters encode to longer sequences
121of bytes internally, but again, this is just an internal detail which
122is hidden at the Perl level.
393fec97 123
8cbd9a7a 124=head2 Effects of character semantics
393fec97
GS
125
126Character semantics have the following effects:
127
128=over 4
129
130=item *
131
132Strings and patterns may contain characters that have an ordinal value
21bad921 133larger than 255.
393fec97 134
75daf61c
JH
135Presuming you use a Unicode editor to edit your program, such
136characters will typically occur directly within the literal strings as
137UTF-8 (or UTF-EBCDIC on EBCDIC platforms) characters, but you can also
138specify a particular character with an extension of the C<\x>
139notation. UTF-X characters are specified by putting the hexadecimal
140code within curlies after the C<\x>. For instance, a Unicode smiley
141face is C<\x{263A}>.
393fec97
GS
142
143=item *
144
145Identifiers within the Perl script may contain Unicode alphanumeric
146characters, including ideographs. (You are currently on your own when
75daf61c
JH
147it comes to using the canonical forms of characters--Perl doesn't
148(yet) attempt to canonicalize variable names for you.)
393fec97 149
393fec97
GS
150=item *
151
152Regular expressions match characters instead of bytes. For instance,
153"." matches a character instead of a byte. (However, the C<\C> pattern
75daf61c 154is provided to force a match a single byte ("C<char>" in C, hence C<\C>).)
393fec97 155
393fec97
GS
156=item *
157
158Character classes in regular expressions match characters instead of
159bytes, and match against the character properties specified in the
75daf61c
JH
160Unicode properties database. So C<\w> can be used to match an
161ideograph, for instance.
393fec97 162
393fec97
GS
163=item *
164
165Named Unicode properties and block ranges make be used as character
166classes via the new C<\p{}> (matches property) and C<\P{}> (doesn't
167match property) constructs. For instance, C<\p{Lu}> matches any
168character with the Unicode uppercase property, while C<\p{M}> matches
9fdf68be
JH
169any mark character. Single letter properties may omit the brackets,
170so that can be written C<\pM> also. Many predefined character classes
a1cc1cb1 171are available, such as C<\p{IsMirrored}> and C<\p{InTibetan}>.
4193bef7
JH
172
173The C<\p{Is...}> test for "general properties" such as "letter",
174"digit", while the C<\p{In...}> test for Unicode scripts and blocks.
175
176The official Unicode script and block names have spaces and
177dashes and separators, but for convenience you can have
178dashes, spaces, and underbars at every word division, and
179you need not care about correct casing. It is recommended,
180however, that for consistency you use the following naming:
181the official Unicode script or block name (see below for
182the additional rules that apply to block names), with the whitespace
183and dashes removed, and the words "uppercase-first-lowercase-otherwise".
184That is, "Latin-1 Supplement" becomes "Latin1Supplement".
185
a1cc1cb1
JH
186You can also negate both C<\p{}> and C<\P{}> by introducing a caret
187(^) between the first curly and the property name: C<\p{^InTamil}> is
4193bef7
JH
188equal to C<\P{InTamil}>.
189
61247495
JH
190The C<In> and C<Is> can be left out: C<\p{Greek}> is equal to
191C<\p{InGreek}>, C<\P{Pd}> is equal to C<\P{Pd}>.
393fec97 192
61247495
JH
193Here is the list as of Unicode 3.1.1 (the two-letter classes) and as
194defined by Perl (the one-letter classes) (what Perl calls C<L> is
195often in Unicode materials called C<L&>):
32293815
JH
196
197 L Letter
198 Lu Letter, Uppercase
199 Ll Letter, Lowercase
200 Lt Letter, Titlecase
201 Lm Letter, Modifier
202 Lo Letter, Other
203 M Mark
204 Mn Mark, Non-Spacing
205 Mc Mark, Spacing Combining
206 Me Mark, Enclosing
207 N Number
208 Nd Number, Decimal Digit
209 Nl Number, Letter
210 No Number, Other
211 P Punctuation
212 Pc Punctuation, Connector
213 Pd Punctuation, Dash
214 Ps Punctuation, Open
215 Pe Punctuation, Close
216 Pi Punctuation, Initial quote
217 (may behave like Ps or Pe depending on usage)
218 Pf Punctuation, Final quote
219 (may behave like Ps or Pe depending on usage)
220 Po Punctuation, Other
221 S Symbol
222 Sm Symbol, Math
223 Sc Symbol, Currency
224 Sk Symbol, Modifier
225 So Symbol, Other
226 Z Separator
227 Zs Separator, Space
228 Zl Separator, Line
229 Zp Separator, Paragraph
230 C Other
231 Cc Other, Control
232 Cf Other, Format
233 Cs Other, Surrogate
234 Co Other, Private Use
235 Cn Other, Not Assigned (Unicode defines no Cn characters)
236
237Additionally, because scripts differ in their directionality
238(for example Hebrew is written right to left), all characters
239have their directionality defined:
240
241 BidiL Left-to-Right
242 BidiLRE Left-to-Right Embedding
243 BidiLRO Left-to-Right Override
244 BidiR Right-to-Left
245 BidiAL Right-to-Left Arabic
246 BidiRLE Right-to-Left Embedding
247 BidiRLO Right-to-Left Override
248 BidiPDF Pop Directional Format
249 BidiEN European Number
250 BidiES European Number Separator
251 BidiET European Number Terminator
252 BidiAN Arabic Number
253 BidiCS Common Number Separator
254 BidiNSM Non-Spacing Mark
255 BidiBN Boundary Neutral
256 BidiB Paragraph Separator
257 BidiS Segment Separator
258 BidiWS Whitespace
259 BidiON Other Neutrals
260
2796c109
JH
261=head2 Scripts
262
75daf61c
JH
263The scripts available for C<\p{In...}> and C<\P{In...}>, for example
264\p{InCyrillic>, are as follows, for example C<\p{InLatin}> or C<\P{InHan}>:
2796c109
JH
265
266 Latin
267 Greek
268 Cyrillic
269 Armenian
270 Hebrew
271 Arabic
272 Syriac
273 Thaana
274 Devanagari
275 Bengali
276 Gurmukhi
277 Gujarati
278 Oriya
279 Tamil
280 Telugu
281 Kannada
282 Malayalam
283 Sinhala
284 Thai
285 Lao
286 Tibetan
287 Myanmar
288 Georgian
289 Hangul
290 Ethiopic
291 Cherokee
292 CanadianAboriginal
293 Ogham
294 Runic
295 Khmer
296 Mongolian
297 Hiragana
298 Katakana
299 Bopomofo
300 Han
301 Yi
302 OldItalic
303 Gothic
304 Deseret
305 Inherited
306
307=head2 Blocks
308
309In addition to B<scripts>, Unicode also defines B<blocks> of
310characters. The difference between scripts and blocks is that the
311former concept is closer to natural languages, while the latter
312concept is more an artificial grouping based on groups of 256 Unicode
313characters. For example, the C<Latin> script contains letters from
314many blocks, but it does not contain all the characters from those
315blocks, it does not for example contain digits.
316
317For more about scripts see the UTR #24:
318http://www.unicode.org/unicode/reports/tr24/
319For more about blocks see
320http://www.unicode.org/Public/UNIDATA/Blocks.txt
321
322Because there are overlaps in naming (there are, for example, both
323a script called C<Katakana> and a block called C<Katakana>, the block
324version has C<Block> appended to its name, C<\p{InKatakanaBlock}>.
325
326Notice that this definition was introduced in Perl 5.8.0: in Perl
3275.6.0 only the blocks were used; in Perl 5.8.0 scripts became the
61247495
JH
328preferential Unicode character class definition; this meant that
329the definitions of some character classes changed (the ones in the
2796c109
JH
330below list that have the C<Block> appended).
331
332 BasicLatin
333 Latin1Supplement
334 LatinExtendedA
335 LatinExtendedB
336 IPAExtensions
337 SpacingModifierLetters
338 CombiningDiacriticalMarks
339 GreekBlock
340 CyrillicBlock
341 ArmenianBlock
342 HebrewBlock
343 ArabicBlock
344 SyriacBlock
345 ThaanaBlock
346 DevanagariBlock
347 BengaliBlock
348 GurmukhiBlock
349 GujaratiBlock
350 OriyaBlock
351 TamilBlock
352 TeluguBlock
353 KannadaBlock
354 MalayalamBlock
355 SinhalaBlock
356 ThaiBlock
357 LaoBlock
358 TibetanBlock
359 MyanmarBlock
360 GeorgianBlock
361 HangulJamo
362 EthiopicBlock
363 CherokeeBlock
364 UnifiedCanadianAboriginalSyllabics
365 OghamBlock
366 RunicBlock
367 KhmerBlock
368 MongolianBlock
369 LatinExtendedAdditional
370 GreekExtended
371 GeneralPunctuation
372 SuperscriptsandSubscripts
373 CurrencySymbols
374 CombiningMarksforSymbols
375 LetterlikeSymbols
376 NumberForms
377 Arrows
378 MathematicalOperators
379 MiscellaneousTechnical
380 ControlPictures
381 OpticalCharacterRecognition
382 EnclosedAlphanumerics
383 BoxDrawing
384 BlockElements
385 GeometricShapes
386 MiscellaneousSymbols
387 Dingbats
388 BraillePatterns
389 CJKRadicalsSupplement
390 KangxiRadicals
391 IdeographicDescriptionCharacters
392 CJKSymbolsandPunctuation
393 HiraganaBlock
394 KatakanaBlock
395 BopomofoBlock
396 HangulCompatibilityJamo
397 Kanbun
398 BopomofoExtended
399 EnclosedCJKLettersandMonths
400 CJKCompatibility
401 CJKUnifiedIdeographsExtensionA
402 CJKUnifiedIdeographs
403 YiSyllables
404 YiRadicals
405 HangulSyllables
406 HighSurrogates
407 HighPrivateUseSurrogates
408 LowSurrogates
409 PrivateUse
410 CJKCompatibilityIdeographs
411 AlphabeticPresentationForms
412 ArabicPresentationFormsA
413 CombiningHalfMarks
414 CJKCompatibilityForms
415 SmallFormVariants
416 ArabicPresentationFormsB
417 Specials
418 HalfwidthandFullwidthForms
419 OldItalicBlock
420 GothicBlock
421 DeseretBlock
422 ByzantineMusicalSymbols
423 MusicalSymbols
424 MathematicalAlphanumericSymbols
425 CJKUnifiedIdeographsExtensionB
426 CJKCompatibilityIdeographsSupplement
427 Tags
32293815 428
393fec97
GS
429=item *
430
431The special pattern C<\X> match matches any extended Unicode sequence
432(a "combining character sequence" in Standardese), where the first
433character is a base character and subsequent characters are mark
434characters that apply to the base character. It is equivalent to
435C<(?:\PM\pM*)>.
436
393fec97
GS
437=item *
438
383e7cdd
JH
439The C<tr///> operator translates characters instead of bytes. Note
440that the C<tr///CU> functionality has been removed, as the interface
441was a mistake. For similar functionality see pack('U0', ...) and
442pack('C0', ...).
393fec97 443
393fec97
GS
444=item *
445
446Case translation operators use the Unicode case translation tables
447when provided character input. Note that C<uc()> translates to
448uppercase, while C<ucfirst> translates to titlecase (for languages
449that make the distinction). Naturally the corresponding backslash
450sequences have the same semantics.
451
452=item *
453
454Most operators that deal with positions or lengths in the string will
75daf61c
JH
455automatically switch to using character positions, including
456C<chop()>, C<substr()>, C<pos()>, C<index()>, C<rindex()>,
457C<sprintf()>, C<write()>, and C<length()>. Operators that
458specifically don't switch include C<vec()>, C<pack()>, and
459C<unpack()>. Operators that really don't care include C<chomp()>, as
460well as any other operator that treats a string as a bucket of bits,
461such as C<sort()>, and the operators dealing with filenames.
393fec97
GS
462
463=item *
464
465The C<pack()>/C<unpack()> letters "C<c>" and "C<C>" do I<not> change,
466since they're often used for byte-oriented formats. (Again, think
467"C<char>" in the C language.) However, there is a new "C<U>" specifier
468that will convert between UTF-8 characters and integers. (It works
469outside of the utf8 pragma too.)
470
471=item *
472
473The C<chr()> and C<ord()> functions work on characters. This is like
474C<pack("U")> and C<unpack("U")>, not like C<pack("C")> and
475C<unpack("C")>. In fact, the latter are how you now emulate
35bcd338
JH
476byte-oriented C<chr()> and C<ord()> for Unicode strings.
477(Note that this reveals the internal UTF-8 encoding of strings and
478you are not supposed to do that unless you know what you are doing.)
393fec97
GS
479
480=item *
481
a1ca4561
YST
482The bit string operators C<& | ^ ~> can operate on character data.
483However, for backward compatibility reasons (bit string operations
75daf61c
JH
484when the characters all are less than 256 in ordinal value) one should
485not mix C<~> (the bit complement) and characters both less than 256 and
a1ca4561
YST
486equal or greater than 256. Most importantly, the DeMorgan's laws
487(C<~($x|$y) eq ~$x&~$y>, C<~($x&$y) eq ~$x|~$y>) won't hold.
488Another way to look at this is that the complement cannot return
75daf61c 489B<both> the 8-bit (byte) wide bit complement B<and> the full character
a1ca4561
YST
490wide bit complement.
491
492=item *
493
6f16a292
JH
494lc(), uc(), lcfirst(), and ucfirst() work only for some of the
495simplest cases, where the mapping goes from a single Unicode character
03e60089
JH
496to another single Unicode character, and where the mapping does not
497depend on surrounding characters, or on locales. More complex cases,
498where for example one character maps into several, are not yet
499implemented. See the Unicode Technical Report #21, Case Mappings,
500for more details. The Unicode::UCD module (part of Perl since 5.8.0)
501casespec() and casefold() interfaces supply information about the more
502complex cases.
ac1256e8
JH
503
504=item *
505
393fec97
GS
506And finally, C<scalar reverse()> reverses by character rather than by byte.
507
508=back
509
8cbd9a7a
GS
510=head2 Character encodings for input and output
511
7221edc9 512See L<Encode>.
8cbd9a7a 513
393fec97
GS
514=head1 CAVEATS
515
516As of yet, there is no method for automatically coercing input and
b3419ed8
PK
517output to some encoding other than UTF-8 or UTF-EBCDIC. This is planned
518in the near future, however.
393fec97 519
8cbd9a7a
GS
520Whether an arbitrary piece of data will be treated as "characters" or
521"bytes" by internal operations cannot be divined at the current time.
393fec97
GS
522
523Use of locales with utf8 may lead to odd results. Currently there is
524some attempt to apply 8-bit locale info to characters in the range
5250..255, but this is demonstrably incorrect for locales that use
526characters above that range (when mapped into Unicode). It will also
527tend to run slower. Avoidance of locales is strongly encouraged.
528
776f8809
JH
529=head1 UNICODE REGULAR EXPRESSION SUPPORT LEVEL
530
531The following list of Unicode regular expression support describes
532feature by feature the Unicode support implemented in Perl as of Perl
5335.8.0. The "Level N" and the section numbers refer to the Unicode
534Technical Report 18, "Unicode Regular Expression Guidelines".
535
536=over 4
537
538=item *
539
540Level 1 - Basic Unicode Support
541
542 2.1 Hex Notation - done [1]
543 Named Notation - done [2]
544 2.2 Categories - done [3][4]
545 2.3 Subtraction - MISSING [5][6]
546 2.4 Simple Word Boundaries - done [7]
547 2.5 Simple Loose Matches - MISSING [8]
548 2.6 End of Line - MISSING [9][10]
549
550 [ 1] \x{...}
551 [ 2] \N{...}
552 [ 3] . \p{Is...} \P{Is...}
553 [ 4] now scripts (see UTR#24 Script Names) in addition to blocks
554 [ 5] have negation
555 [ 6] can use look-ahead to emulate subtracion
556 [ 7] include Letters in word characters
557 [ 8] see UTR#21 Case Mappings
558 [ 9] see UTR#13 Unicode Newline Guidelines
559 [10] should do ^ and $ also on \x{2028} and \x{2029}
560
561=item *
562
563Level 2 - Extended Unicode Support
564
565 3.1 Surrogates - MISSING
566 3.2 Canonical Equivalents - MISSING [11][12]
567 3.3 Locale-Independent Graphemes - MISSING [13]
568 3.4 Locale-Independent Words - MISSING [14]
569 3.5 Locale-Independent Loose Matches - MISSING [15]
570
571 [11] see UTR#15 Unicode Normalization
572 [12] have Unicode::Normalize but not integrated to regexes
573 [13] have \X but at this level . should equal that
574 [14] need three classes, not just \w and \W
575 [15] see UTR#21 Case Mappings
576
577=item *
578
579Level 3 - Locale-Sensitive Support
580
581 4.1 Locale-Dependent Categories - MISSING
582 4.2 Locale-Dependent Graphemes - MISSING [16][17]
583 4.3 Locale-Dependent Words - MISSING
584 4.4 Locale-Dependent Loose Matches - MISSING
585 4.5 Locale-Dependent Ranges - MISSING
586
587 [16] see UTR#10 Unicode Collation Algorithms
588 [17] have Unicode::Collate but not integrated to regexes
589
590=back
591
393fec97
GS
592=head1 SEE ALSO
593
32293815 594L<bytes>, L<utf8>, L<perlretut>, L<perlvar/"${^WIDE_SYSTEM_CALLS}">
393fec97
GS
595
596=cut