Skip to content

Instantly share code, notes, and snippets.

@mperlet
Created April 15, 2016 08:50
Show Gist options
  • Save mperlet/36d45969dd1a6a68a1c9f101588c44b6 to your computer and use it in GitHub Desktop.
Save mperlet/36d45969dd1a6a68a1c9f101588c44b6 to your computer and use it in GitHub Desktop.
Creates a list of HTML Chars
echo "<ul>" > chars.html
for i in {0..65536}
do
echo "<li>&#38;#$i; = &#$i;<li>" >> chars.html
done
echo "</ul>" >> chars.html
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment