Files
G4G0-2/Client Server Systems/Week 3/workshop3/emoji.php
2024-10-16 09:12:37 +01:00

6 lines
127 B
PHP

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