This is used to get the ASCII value of the specified character.
#! C:\programfiles\perl\bin\perl print "content-type: text/html\n\n"; print chr(41); print "<br>"; print chr(35); print "<br>"; print chr(43);
) # +
In the above Perl example the ASCII values of "41", "35", "43" is displayed as result.