5 $bytes::hint_bits = 0x00000008;
8 $^H |= $bytes::hint_bits;
12 $^H &= ~$bytes::hint_bits;
16 require "bytes_heavy.pl";
27 bytes - Perl pragma to force byte semantics rather than character semantics
36 The C<use bytes> pragma disables character semantics for the rest of the
37 lexical scope in which it appears. C<no bytes> can be used to reverse
38 the effect of C<use bytes> within the current lexical scope.
40 Perl normally assumes character semantics in the presence of character
41 data (i.e. data that has come from a source that has been marked as
42 being of a particular character encoding). When C<use bytes> is in
43 effect, the encoding is temporarily ignored, and each string is treated
46 As an example, when Perl sees C<$x = chr(400)>, it encodes the character
47 in UTF-8 and stores it in $x. Then it is marked as character data, so,
48 for instance, C<length $x> returns C<1>. However, in the scope of the
49 C<bytes> pragma, $x is treated as a series of bytes - the bytes that make
50 up the UTF8 encoding - and C<length $x> returns C<2>:
53 print "Length is ", length $x, "\n"; # "Length is 1"
54 printf "Contents are %vd\n", $x; # "Contents are 400"
57 print "Length is ", length $x, "\n"; # "Length is 2"
58 printf "Contents are %vd\n", $x; # "Contents are 198.144"
61 For more on the implications and differences between character
62 semantics and byte semantics, see L<perlunicode>.
66 L<perlunicode>, L<utf8>