Perl Programming/Keywords/chr

Previous: chown Keywords Next: chroot

The chr keyword edit

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.

Syntax edit

  chr NUMBER
  chr

Examples edit

  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'

See also edit

Previous: chown Keywords Next: chroot