Thursday 21 February 2019

HTML Character Codes

There are several websites which list the popular HTML Character Codes but if you need to view them all, this short HTML Javascript snippet will list all the numbered codes in your browser.

<html> <head> <style> table { border-collapse: collapse; } th { width: 3em; padding: 0.6em; background: lightgray; color: darkslategray; font-size: 0.6em; } td { width: 3em; padding: 0.6em; display: inline-block; border: 1px solid lightgray; text-align: center; } </style> </head> <body> <table> <script> for (i=0; i<80000; i++) { document.write('<tr><th>&#' + i + ';</th><td> &#' + i + '; </td></tr>'); } </script> </table> </body> </html>