无法在HTML中显示特殊字符

时间:2016-03-22 21:52:18

标签: html html5

我无法在我的网站上显示特殊字符!

我试着输入:Ḍøøӽ(我的氏族名字),我一无所获!

是的,我添加了其他元素..但是,我做错了吗?我可以使用一些发生器或类似的东西吗?

感谢您的帮助:)

PS:我的代码:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset=utf-8>
<title>DooxNames</title>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<link href="tools/style.css" rel="stylesheet" type="text/css" />
<link href="tools/960.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script> 
<script type="text/javascript" src="js/cufon-yui.js"></script>
<script type="text/javascript" src="js/Copse_400.font.js"></script>
<script type="text/javascript" src="js/Gabriola_400.font.js"></script>
<script type="text/javascript">
    Cufon.replace('h1', {fontFamily: 'Copse', hover:true})
    Cufon.replace('p.info', {fontFamily: 'Gabriola', hover:true})
</script>
</head>
<body>
<div id="shim"></div>
<div id="content">
    <h1 class="logo"><span class="one">Doox Fennon</span><span class="two">Ḍøøӽ║ᶂeȠȠØŅ</span></h1>


</body>
</html>

3 个答案:

答案 0 :(得分:1)

请改用html实体值。我用http://www.htmlescape.net/htmlescape_tool.html将Ḍøøӽ║ᶂeȠȠØŅ翻译成&#x1e0c;&oslash;&oslash;&#x04fd;&#x2551;&#x1d82;e&#x0220;&#x0220;&Oslash;&#x0145;

答案 1 :(得分:1)

在其他助手的帮助下,我找到了答案(谢谢!)

问题出现在这行html中:

    Cufon.replace('h1', {fontFamily: 'Copse', hover:true})

该行将h1内的fontFamily更改为Copse,后者无法显示特殊字符。

当删除该行时,字体为Arial,而ofc,Arial可以显示特殊字符。

答案 2 :(得分:0)

您必须添加一个html符号...即显示ø您需要输入

&#8709; 此链接非常有用http://www.w3schools.com/html/html_symbols.asp