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

3 lines
70 B
PHP
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
echo ord('a'), "\n"; // prints "97"
echo chr(97), "\n"; // prints "a"