|
chr - get character this number represents |
chr - get character this number represents
chr NUMBER
chr
Returns the character represented by that
NUMBER in the character set.
For example, chr(65) is "A" in either
ASCII or Unicode, and
chr(0x263a) is a Unicode smiley face (but only within the scope of
a use utf8). For the reverse, use ord in the perlfunc manpage.
See the utf8 manpage for more about Unicode.
If
NUMBER is omitted, uses $_.
|
chr - get character this number represents |