¡ ¡ ¢ ¢ £ £ ¤ ¤ ¥ ¥ ¦ ¦ § § ¨ ¨ © © ª ª « « ¬ ¬ ­ ® ® ¯ ¯ ° ° ± ± ² ² ³ ³ ´ ´ µ µ ¶ ¶ · · ¸ ¸ | ¹ ¹ º º » » ¼ ¼ ½ ½ ¾ ¾ ¿ ¿ À À Á Á Â Â Ã Ã Ä Ä Å Å Æ Æ Ç Ç È È É É Ê Ê Ë Ë Ì Ì Í Í Î Î Ï Ï Ð Ð Ñ Ñ | Ò Ò Ó Ó Ô Ô Õ Õ Ö Ö × × Ø Ø Ù Ù Ú Ú Û Û Ü Ü Ý Ý Þ Þ ß ß à à á á â â ã ã ä ä å å æ æ ç ç è è é é ê ê | ë ë ì ì í í î î ï ï ð ð ñ ñ ò ò ó ó ô ô õ õ ö ö ÷ ÷ ø ø ù ù ú ú û û ü ü ý ý þ þ ÿ ÿ " " < < > > & & |
The PHP code bellow allows to retrieve the list of characters above: |
<?php $array = get_html_translation_table (HTML_ENTITIES); print "<pre>"; foreach ($array as $the_special_character => $the_html_entities){ // convert the especial character to html entities // example: ">" with be converted to ">" $code1=htmlentities($the_special_character); // convert the html entities to html code // example: ">" with be converted to "&lt;" $code2=htmlentities($the_html_entities); // print code above print "$code1\t$code2\n"; } ?> |