Files
2025-01-30 09:27:31 +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>";
}