Files
phpstorm/workshop3/Emoji/index.php
2024-10-17 00:35:53 +01: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>";
}