RosettaCodeData/Task/Character-codes/PHP/character-codes.php

3 lines
70 B
PHP
Raw Permalink Normal View History

2013-04-10 16:57:12 -07:00
echo ord('a'), "\n"; // prints "97"
echo chr(97), "\n"; // prints "a"