HTML Character Codes at Your Fingertips
HTML Character Codes are the codes that make those useful symbols that I often can't recall how to make. This article provides a couple "memory-nudgers" so we will have the codes at our fingertips.
An HTML character code example is the © code for the copyright symbol character, which prints as ©. The geek name for such character codes is "HTML entities."
The Dropdown List
The dropdown list does not contain all HTML character codes. Just some of the ones we want handy for ourselves. Give it a try.
Below is the code for the dropdown list. It can be copied and pasted into your personal or any web page. If there are some codes you especially need, add them to the list.
You do have a personal page, right? That would be a web page either on your hard drive or on your server that contains your personal references and tools all handy on one page. It might be your browser home page or accessible with a handy bookmark.
<form name="charform"> <select style="width:150px" name="charlist" onchange="document.charform.charcode.value=document.charform.charlist.options[document.charform.charlist.selectedIndex].value"> <option value=""> </option> <option value="&copy;">© copyright</option> <option value="&trade;">™ trademark</option> <option value="&reg;">® registered</option> <option value=""> </option> <option value="&bull;">• bullet</option> <option value="&sect;">§ section</option> <option value="&lt;">< less-than</option> <option value="&gt;">> greater-than</option> <option value="&plusmn;">± plusminus</option> <option value=""> </option> <option value="&laquo;">« left angle quote</option> <option value="&raquo;">» right angle quote</option> <option value=""> </option> <option value="&curren;">¤ currency</option> <option value="&cent;">¢ cent</option> <option value="&pound;">£ pound sterling</option> <option value="&yen;">¥ yen</option> <option value=""> </option> <option value="&frac14;">¼ one quarter</option> <option value="&frac12;">½ one half</option> <option value="&frac34;">¾ three quarters</option> <option value=""> </option> </select> <br /><input type="text" name="charcode" style="width:150px; background-color:#FFFF99;" onclick="select()"> </form>
Here is a table with the above HTML character codes. If you prefer, this page can be printed and the table cut out and tacked to the wall, visible while you're working.
|
A larger list of HTML character codes has been prepared for a more comprehensive reference. The list has been tested with several browsers running on both Windows and Macintosh computers.
>Click here< to reveal the larger list of HTML character codes (HTML entities).
Will Bontrager