Perl Programming/Keywords/chr
< Perl Programming | Keywords
The chr keywordEdit
chr returns the character specified with NUMBER. Negative values give the Unicode replacement character (chr(0xfffd)) as long as the bytes pragma is not selected. In that case, the low eight bits of the value truncated to an integer are used.
Without NUMBER, the contents of $_ are used.
chr is the reverse of ord.
SyntaxEdit
chr NUMBER
chr
ExamplesEdit
The lines
#!"C:/Programms/Perl/site/bin"
use 5.10.0;
$number = 65;
say "number = " . $number, " corresponds to the code '" . chr $number . "'";
returns
number = 65 corresponds to the code 'A'