3 if (ord('A') != 193) { # make things more pragmatic for EBCDIC folk
5 $utf8::hint_bits
= 0x00800000;
8 $^H
|= $utf8::hint_bits
;
9 $enc{caller()} = $_[1] if $_[1];
13 $^H
&= ~$utf8::hint_bits
;
17 require "utf8_heavy.pl";
18 goto &$AUTOLOAD if defined &$AUTOLOAD;
19 Carp
::croak
("Undefined subroutine $AUTOLOAD called");
29 utf8 - Perl pragma to enable/disable UTF-8 in source code
38 WARNING: The implementation of Unicode support in Perl is incomplete.
39 See L<perlunicode> for the exact details.
41 The C<use utf8> pragma tells the Perl parser to allow UTF-8 in the
42 program text in the current lexical scope. The C<no utf8> pragma
43 tells Perl to switch back to treating the source text as literal
44 bytes in the current lexical scope.
46 This pragma is primarily a compatibility device. Perl versions
47 earlier than 5.6 allowed arbitrary bytes in source code, whereas
48 in future we would like to standardize on the UTF-8 encoding for
49 source text. Until UTF-8 becomes the default format for source
50 text, this pragma should be used to recognize UTF-8 in the source.
51 When UTF-8 becomes the standard source format, this pragma will
52 effectively become a no-op. This pragma already is a no-op on
53 EBCDIC platforms (where it is alright to code perl in EBCDIC
56 Enabling the C<utf8> pragma has the following effects:
62 Bytes in the source text that have their high-bit set will be treated
63 as being part of a literal UTF-8 character. This includes most literals
64 such as identifiers, string constants, constant regular expression patterns
69 In the absence of inputs marked as UTF-8, regular expressions within the
70 scope of this pragma will default to using character semantics instead
73 @bytes_or_chars = split //, $data; # may split to bytes if data
76 use utf8; # force char semantics
77 @chars = split //, $data; # splits characters
82 L<perlunicode>, L<bytes>