diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2000-04-24 06:11:56 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2000-04-24 06:11:56 +0000 |
commit | 4375e838ae24b385ae79fa7b6918e613bedaaee6 (patch) | |
tree | 9418d63a58345f7e8f9e1ff644fa85c022b18650 /pod/perlunicode.pod | |
parent | 94a371ee7128c99a38226de46cbec028ae3a990e (diff) | |
download | perl-4375e838ae24b385ae79fa7b6918e613bedaaee6.tar.gz |
various pod nits (from Larry Virden and others)
p4raw-id: //depot/perl@5917
Diffstat (limited to 'pod/perlunicode.pod')
-rw-r--r-- | pod/perlunicode.pod | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/pod/perlunicode.pod b/pod/perlunicode.pod index 5333ac495c..c6866617a2 100644 --- a/pod/perlunicode.pod +++ b/pod/perlunicode.pod @@ -114,13 +114,7 @@ will typically occur directly within the literal strings as UTF-8 characters, but you can also specify a particular character with an extension of the C<\x> notation. UTF-8 characters are specified by putting the hexadecimal code within curlies after the C<\x>. For instance, -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 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. +a Unicode smiley face is C<\x{263A}>. =item * |