Created
December 21, 2010 14:17
-
-
Save danott/749976 to your computer and use it in GitHub Desktop.
Sometimes I want to find random entities to use in HTML.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!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