<meta http-equiv="Content-Type" content="text/htmlcharset=utf-8" />
希望可以帮助到你
用js啊,<script type='text/javascript'>
var a='\u263a'
document.write(a)
</script>
<%@ Language=VBScript %><html>
<head>
<title>UNICODE编码</title>
</head>
<body>
<%
Dim strU
dim strNormal
strU= ChrW(7913)
strNormalANSI= "aiN"
%>
<font face="arial" size=+1>
<P>An ANSI value: <%=strNormalANSI%>
<P>An htmlencoded String: <%=Server.htmlEncode(strU)%>
</font>