diff options
Diffstat (limited to 'pod/perlunicode.pod')
-rw-r--r-- | pod/perlunicode.pod | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pod/perlunicode.pod b/pod/perlunicode.pod index c8e31bf66c..5333ac495c 100644 --- a/pod/perlunicode.pod +++ b/pod/perlunicode.pod @@ -118,7 +118,8 @@ a Unicode smiley face is C<\x{263A}>. A character in the Latin-1 range (128..255) should be written C<\x{ab}> rather than C<\xab>, since the former will turn into a two-byte UTF-8 code, while the latter will continue to be interpreted as generating a 8-bit byte rather than a -character. In fact, if C<-w> is turned on, it will produce a warning +character. In fact, if the C<use warnings> pragma of the C<-w> switch +is turned on, it will produce a warning that you might be generating invalid UTF-8. =item * |