Skip to content

Instantly share code, notes, and snippets.

@danott
Created December 21, 2010 14:17
Show Gist options
  • Select an option

  • Save danott/749976 to your computer and use it in GitHub Desktop.

Select an option

Save danott/749976 to your computer and use it in GitHub Desktop.
Sometimes I want to find random entities to use in HTML.
<!doctype html>
<html>
<head>
</head>
<body>
<p>
<?php
$low_bound = 13312;
$high_bound = 20000;
for($i=13312;$i<16612;$i++)
{
echo '&#' . $i . ';';
}
?>
</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment