html 中的特殊字符?
我正在尝试在我的网站的广告 html 下方显示该符号,有谁知道如何找到这个符号,因为它没有在 Dreamweaver 中显示,而且事实证明找到它是一场噩梦。
'ş' 的
ascii 是 html 350-0
任何帮助将非常感谢。
I'm trying to display the symbol below ad html for my website, does anyone know how to find this one as it doesn't show in dreamweaver and is proving to be a nightmare to find.
'ş'
the ascii for it is html 350-0
Any help would be great thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您在问题 (ş) 中包含的字符是 U+015E 带变音符号的拉丁文小写字母 S。它的 Unicode 编号为十六进制 015F,十进制 351,因此可以使用引用
ş
或等效的ş
将其包含在 HTML 中。当您提到数字 350(不可能是任何数字的 ASCII 数字,因为 ASCII 以 127 结尾)时,您实际上可能指的是“Ş”,U+015E 带 CEDILLA 的拉丁文大写字母 S,可表示为
&# x15e;
或等效的Ş
。如果您需要其他字符的数字,请查看 http://www.alanwood.net/unicode/#links (不权威,但可靠且方便)。
The character you included in your question (ş) is U+015E LATIN SMALL LETTER S WITH CEDILLA. Its Unicode number is 015F in hexadecimal, 351 in decimal, so it can be included in HTML using the reference
ş
or, equivalently,ş
.As you mention the number 350 (which cannot possibly be an ASCII number for anything, since ASCII ends at 127), you might actually mean “Ş”, U+015E LATIN CAPITAL LETTER S WITH CEDILLA, representable as
Ş
or, equivalently,Ş
.If you need numbers for other characters, check out http://www.alanwood.net/unicode/#links (not authoritative, but reliable and handy).
http://www.ascii.cl/htmlcodes.htm
http://www.ascii.cl/htmlcodes.htm
对于任何特殊字符,您可以复制字符并粘贴到此 2 路字符到实体转换器的顶部框中。然后只需单击“转换”并获取您的 HTML 实体字符。
http://www.gooplusplus.com/entity.html
此在线实用程序可将 HTML 数字转换为和 unicode 实体 + URL 编码
您还可以将特殊字符作为参数添加到 URL:
http://www.gooplusplus.com/entity.html?您的特殊字符
For any special characters, you can copy the character(s) and paste in the top box in this 2-way character-to-entity converter. Then just click on "convert" and grab your HTML entity characters.
http://www.gooplusplus.com/entity.html
This online utility converts to both HTML numeric and unicode entities + URL encoded
You can also just add the special characters as a parameter to the URL:
http://www.gooplusplus.com/entity.html?YOUR-SPECIAL-CHARS