黄聪:百度知道中对HTML字符实体、字符编号,&开头字符的使用

http://www.w3school.com.cn/tags/html_ref_entities.html

带有实体名称的 ASCII 实体

结果 描述 实体名称 实体编号
" quotation mark " "
apostrophe  ' '
& ampersand & &
< less-than &lt; <
> greater-than &gt; >

ISO 8859-1 符号实体

结果 描述 实体名称 实体编号
  non-breaking space &nbsp;  
¡ inverted exclamation mark &iexcl; ¡
¢ cent &cent; ¢
£ pound &pound; £
¤ currency &curren; ¤
¥ yen &yen; ¥
¦ broken vertical bar &brvbar; ¦
§ section &sect; §
¨ spacing diaeresis &uml; ¨
© copyright &copy; ©
ª feminine ordinal indicator &ordf; ª
« angle quotation mark (left) &laquo; «
¬ negation &not; ¬
  soft hyphen &shy; ­
® registered trademark &reg; ®
¯ spacing macron &macr; ¯
° degree &deg; °
± plus-or-minus  &plusmn; ±
² superscript 2 &sup2; ²
³ superscript 3 &sup3; ³
´ spacing acute &acute; ´
µ micro &micro; µ
paragraph &para;
· middle dot &middot; ·
¸ spacing cedilla &cedil; ¸
¹ superscript 1 &sup1; ¹
º masculine ordinal indicator &ordm; º
» angle quotation mark (right) &raquo; »
¼ fraction 1/4 &frac14; ¼
½ fraction 1/2 &frac12; ½
¾ fraction 3/4 &frac34; ¾
¿ inverted question mark &iquest; ¿
× multiplication &times; ×
÷ division &divide; ÷

ISO 8859-1 字符实体

结果 描述 实体名称 实体编号
À capital a, grave accent &Agrave; À
Á capital a, acute accent &Aacute; Á
 capital a, circumflex accent &Acirc; Â
à capital a, tilde &Atilde; Ã
Ä capital a, umlaut mark &Auml; Ä
Å capital a, ring &Aring; Å
Æ capital ae &AElig; Æ
Ç capital c, cedilla &Ccedil; Ç
È capital e, grave accent &Egrave; È
É capital e, acute accent &Eacute; É
Ê capital e, circumflex accent &Ecirc; Ê
Ë capital e, umlaut mark &Euml; Ë
Ì capital i, grave accent &Igrave; Ì
Í capital i, acute accent &Iacute; Í
Î capital i, circumflex accent &Icirc; Î
Ï capital i, umlaut mark &Iuml; Ï
Ð capital eth, Icelandic &ETH; Ð
Ñ capital n, tilde &Ntilde; Ñ
Ò capital o, grave accent &Ograve; Ò
Ó capital o, acute accent &Oacute; Ó
Ô capital o, circumflex accent &Ocirc; Ô
Õ capital o, tilde &Otilde; Õ
Ö capital o, umlaut mark &Ouml; Ö
Ø capital o, slash &Oslash; Ø
Ù capital u, grave accent &Ugrave; Ù
Ú capital u, acute accent &Uacute; Ú
Û capital u, circumflex accent &Ucirc; Û
Ü capital u, umlaut mark &Uuml; Ü
Ý capital y, acute accent &Yacute; Ý
Þ capital THORN, Icelandic &THORN; Þ
ß small sharp s, German &szlig; ß
à small a, grave accent &agrave; à
á small a, acute accent &aacute; á
â small a, circumflex accent &acirc; â
ã small a, tilde &atilde; ã
ä small a, umlaut mark &auml; ä
å small a, ring &aring; å
æ small ae &aelig; æ
ç small c, cedilla &ccedil; ç
è small e, grave accent &egrave; è
é small e, acute accent &eacute; é
ê small e, circumflex accent &ecirc; ê
ë small e, umlaut mark &euml; ë
ì small i, grave accent &igrave; ì
í small i, acute accent &iacute; í
î small i, circumflex accent &icirc; î
ï small i, umlaut mark &iuml; ï
ð small eth, Icelandic &eth; ð
ñ small n, tilde &ntilde; ñ
ò small o, grave accent &ograve; ò
ó small o, acute accent &oacute; ó
ô small o, circumflex accent &ocirc; ô
õ small o, tilde &otilde; õ
ö small o, umlaut mark &ouml; ö
ø small o, slash &oslash; ø
ù small u, grave accent &ugrave; ù
ú small u, acute accent &uacute; ú
û small u, circumflex accent &ucirc; û
ü small u, umlaut mark &uuml; ü
ý small y, acute accent &yacute; ý
þ small thorn, Icelandic &thorn; þ
ÿ small y, umlaut mark &yuml; ÿ
时间: 2025-01-16 20:22:34

黄聪:百度知道中对HTML字符实体、字符编号,&开头字符的使用的相关文章

HTML 字符实体 &lt; &gt;: &amp;等

在 HTML 中,某些字符是预留的. 在 HTML 中不能使用小于号(<)和大于号(>),这是因为浏览器会误认为它们是标签. 如果希望正确地显示预留字符,我们必须在 HTML 源代码中使用字符实体(character entities).比如要写这篇日志在前端展现出大于号(>),小于号(<)等就必须在后台数据库中把这些对象保存成字符实体的形式. 字符实体类似这样: &entity_name; 或者 &#entity_number; 如需显示小于号,我们必须这样写:&

HTML 字符实体 &amp;lt; &amp;gt: &amp;amp;等

HTML&CSS Dec 07 2012 在 HTML 中,某些字符是预留的. 在 HTML 中不能使用小于号(<)和大于号(>),这是因为浏览器会误认为它们是标签. 如果希望正确地显示预留字符,我们必须在 HTML 源代码中使用字符实体(character entities).比如要写这篇日志在前端展现出大于号(>),小于号(<)等就必须在后台数据库中把这些对象保存成字符实体的形式. 字符实体类似这样: &entity_name; 或者 &#entity_

PHP实现html字符实体转汉字

就一个函数搞定了: mb_convert_encoding("人人", "UTF-8", "HTML-ENTITIES"); 这个函数原本是用来转换字符编码的,想不到也可以用来转换 html字符实体. PHP实现html字符实体转汉字

《黄聪:手机移动站SEO优化教程》4、如何实现手机移动网站和PC站点的自主适配

转载:http://blog.csdn.net/dog250/article/details/6896949 UDP协议疑难杂症全景解析 2011-10-22 19:26 2989人阅读 评论(4) 收藏 举报 tcp网络算法交通socket通讯 如今,但凡说精通网络的,第二个意思就是"精通TCP",事实上,很多自称精通TCP的家伙们只是精通socket接口而已,对TCP行为精通的并不多,笔者也不算精通,但绝对是中等以上水平.如果你真的精通TCP行为,那么本文不读也罢,直接发邮件给我,

黄聪:《网站高转换率法则》#2:你的网站是垃圾站吗?

原文链接:http://user.qzone.qq.com/281808710/blog/1411485614 我们接着之前的话题继续聊聊. 我们先来看看,你的网站是否存在下面几个问题: 1.我的网站每天都有不少流量,但是我不懂怎么留住这些流量. 2.我不懂怎么让这些流量成交. 3.我不懂怎么让这些流量帮助我带来新的流量. 那么,这些站长为什么会苦恼于这几个问题呢?我们来试着寻找一下答案. 1.关于网站的那些事儿 在我看来,绝大多数存在以上问题的网站,一般都是这样诞生的: 无论哪个行业,你只要通

黄聪:如何用代码设置控制自己网站的网页在360浏览器打开时强制优先使用极速模式,而非兼容模式

最近用360浏览器访问自己的网站,发现都是被优先选用兼容模式打开,这使得网站很难看.为了让360浏览器打开网站的时候优先试用极速模式,找了一下官方论坛,发现了解决方案. 在head标签中添加一行代码: <html> <head> <meta name="renderer" content="webkit|ie-comp|ie-stand"> </head> <body> </body> <

黄聪:WordPress 多站点建站教程(六):使用WP_Query、switch_to_blog函数实现获取子站点分类中的文章

首先在你使用主题的funtions.php里面添加下代码: //根据时间显示最新的分类文章内容,每个站点显示一篇内容 //$blog_id 子站点ID //$catid 分类ID wp_reset_query(); switch_to_blog($blog_id); global $post;?> $my_query2 = new WP_Query('showposts=1&order=desc&orderby=date&cat='.$catid); while ($my_q

黄聪:如何删除wordpress登录之后wp_footer、wp_head自行加载的Open Sans字体、fonts.googleapis.com连接导致卡死的问题

有时候在浏览自己的WordPress网站时,发现网页长时间无响应, 卡在正在连接到fonts.googleapis.com ,如下图所示: 查看网页源码时,发现Head里面有如下一段代码: <link rel='stylesheet' id='open-sans-css' href='//fonts.googleapis.com/css?family=Open+Sans%3A300italic%2C400italic%2C600italic%2C300%2C400%2C600&subset=

黄聪:《网站高转换率法则》#1:为什么要研究网站转换率?

最近,在研究自媒体. 我研究知识的方式,第一步,就是找师傅,并且是付费找师傅. 很多人学习,总喜欢自学,总认为自己可以通过自己的努力,爬上技术的巅峰. 其实,这是最笨的方法. 除非你研究的技术,是前无古人的,那你唯有自学一条路. 但是,如果你研究的技术,已经有人早就走过这条路,你只需要付费跟着前人学习.那么你完全可以在最短的时间,走最少的弯路就掌握这门技术. 为了学习自媒体,我花钱加入了几个自媒体的班级,抱团学习. 为什么要学习自媒体呢? 我不想做太多介绍,总之我是看到了自媒体的威力,才决定学习