Cari di Perl 
    Perl User Manual
Daftar Isi
(Sebelumnya) Remove the last character from ...One-way passwd-style encryption (Berikutnya)
Functions for SCALARs or strings

Get character this number represents

Daftar Isi

  • 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, andchr(0x263a) is a Unicode smiley face.

    Negative values give the Unicode replacement character (chr(0xfffd)),except under the bytes pragma, where the low eight bits of the value(truncated to an integer) are used.

    If NUMBER is omitted, uses $_.

    For the reverse, use ord.

    Note that characters from 128 to 255 (inclusive) are by defaultinternally not encoded as UTF-8 for backward compatibility reasons.

    See perlunicode for more about Unicode.

 
Source : perldoc.perl.org - Official documentation for the Perl programming language
Site maintained by Jon Allen (JJ)     See the project page for more details
Documentation maintained by the Perl 5 Porters
(Sebelumnya) Remove the last character from ...One-way passwd-style encryption (Berikutnya)