Perl Programming/Keywords/chr

Previous: chown Keywords Next: chroot

The chr keyword

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

  chr NUMBER
  chr

Examples

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

Previous: chown Keywords Next: chroot
Category:Book:Perl Programming#Keywords/chr%20
Category:Book:Perl Programming