Perl Programming/Keywords/chr

From Wikibooks, open books for an open world
Jump to navigation Jump to search
Previous: chown Keywords Next: chroot

The chr keyword[edit | edit source]

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 | edit source]

  chr NUMBER
  chr

Examples[edit | edit source]

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 | edit source]

Previous: chown Keywords Next: chroot