Files
phpstorm/php-s1/workshop3/Emoji/index.php
2025-02-06 12:30:01 +00:00

6 lines
127 B
PHP
Executable File

<?php
for ($i = 128512; $i < 128592; $i++) {
$hex = dechex($i);
echo "Icon for 0x$hex is '&#x$hex'";
echo "<br>";
}