ASCII Entities with new Entity Names : Entity Table « Reference « HTML / CSS






ASCII Entities with new Entity Names

 
<table class="ex" border="1" cellspacing="0" width="100%">
    <tbody><tr>
      <th align="left">Result</th>
      <th align="left">Description</th>
      <th align="left">Entity Name</th>
      <th align="left">Entity Number</th>
    </tr>
    <tr>
      <td>"</td>
      <td>quotation mark</td>
      <td>&amp;quot;</td>
      <td>&amp;#34;</td>
    </tr>
    <tr>
      <td>'</td>
      <td>apostrophe&nbsp;</td>
      <td>&amp;apos; (does not work in IE)</td>
      <td>&amp;#39;</td>
    </tr>
    <tr>
      <td>&amp;</td>
      <td>ampersand</td>
      <td>&amp;amp;</td>
      <td>&amp;#38;</td>
    </tr>
    <tr>
      <td>&lt;</td>
      <td>less-than</td>
      <td>&amp;lt;</td>
      <td>&amp;#60;</td>
    </tr>
    <tr>
      <td>&gt;</td>
      <td>greater-than</td>
      <td>&amp;gt;</td>
      <td>&amp;#62;</td>
    </tr>
</tbody></table>

           
         
  








Related examples in the same category

1.Printable ASCII Characters: 7-BIT
2.ISO 8859-1 Symbol Entities
3.ISO 8859-1 Character Entities
4.Other Entities supported by HTML
5.Character Entity Example