ASP中将汉字转换为UTF-8的一段代码

2019-06-16 07:55:34来源: 阅读 ()

新老客户大回馈,云服务器低至5折

汉字转换为UTF-8的一段代码
终于找到这段代码了,一个ASP写的中文转UTF-8,大家可以试试;
function;chinese2unicode(Salon)
dim;i
dim;Salon_one
dim;Salon_unicode
for;i=1;to;len(Salon)
Salon_one=Mid(Salon,i,1)
Salon_unicode=Salon_unicode&chr(38)
Salon_unicode=Salon_unicode&chr(35)
Salon_unicode=Salon_unicode&chr(120)
Salon_unicode=Salon_unicode&;Hex(ascw(Salon_one))
Salon_unicode=Salon_unicode&chr(59)
next
Response.Write;Salon_unicode
end;function

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:ASP内建对象Application

下一篇:ASP内建对象Response