如何把中文转换为UNICODE?

来源:asp之家 时间:2009-11-07 18:39:00 

把中文字符转换回Unicode字符。

见下列代码:

<%
function unicode(str)
dim i,j,c,i1,i2,u,fs,f,p
unicode=""
p=""
for i=1 to len(str)
c=mid(str,i,1)
j=ascw(c)
if j<0 then
j=j+65536
end if
if j>=0 and j<=128 then
if p="c" then
unicode=" "&unicode
p="e"
end if
unicode=unicode&c
else
if p="e" then
unicode=unicode&" "
p="c"
end if
unicode=unicode&"&#"&j&";"
end if
next
end function
function cutline(str,linelen)
dim i,j,c,k
cutline=""
j=0
for i=1 to len(str)
c=mid(str,i,1)
if asc(c)<0 or asc(c)>127 then
k=2
else
if asc(c)<32 then
k=0
if asc(c)=13 then
j=0
cutline=cutline+"<br/>"+c
c=""
end if
else
k=1
end if
end if
j=j+k
if j>linelen*2 then
cutline=cutline+"<br/>"+vbCrlf+c
j=k
else
cutline=cutline+c
end if
next
end function
function convertsymbol(sStr)
dim i,c
convertsymbol=""
for i=1 to len(sStr)
c=mid(sStr,i,1)
if c=">" then
convertsymbol=convertsymbol & ">"
elseif c="<" then
convertsymbol=convertsymbol & "<"
elseif c="'" then
convertsymbol=convertsymbol & "&apos;"
elseif c="""" then
convertsymbol=convertsymbol & """
elseif c="&" then
convertsymbol=convertsymbol & "&"
elseif c="$" then
convertsymbol=convertsymbol & "$$"
else
convertsymbol=convertsymbol & c
end if
next
end function
function convertstring(sStr)
dim strtemp,asctemp,c
strtemp=""
for i=1 to len(sStr)
c=mid(sStr,i,1)
asctemp=ascw(c)
if (asctemp>47 and asctemp<58) or (asctemp>64 and asctemp<91) or (asctemp>96 and asctemp<123) then
strtemp=strtemp & c
end if
next
convertstring=Lcase(strtemp)
end function
%>

标签:
0
投稿

猜你喜欢

  • asp源码如何显示数据库字段的结构?

    2010-06-08 09:35:00
  • 给ubuntu18安装python3.7的详细教程

    2022-11-02 16:34:57
  • sql 查询记录数结果集某个区间内记录

    2023-07-09 08:25:01
  • phpcms手机内容页面添加上一篇和下一篇

    2024-05-11 09:54:05
  • 简单实现python画圆功能

    2021-06-06 02:39:36
  • 在js中调用asp页面的方法

    2007-08-21 20:30:00
  • python 动态调用函数实例解析

    2021-03-11 09:31:41
  • Django+RestFramework API接口及接口文档并返回json数据操作

    2021-05-29 21:43:57
  • MySQL中MIN()函数的使用教程

    2024-01-27 21:19:58
  • python异常处理try的实例小结

    2022-01-25 06:06:51
  • 用层模拟下拉列表框

    2013-07-01 01:19:00
  • python实现单例的两种方法解读

    2022-04-10 21:10:46
  • python实现telnet客户端的方法

    2021-04-14 21:07:24
  • python 线程的五个状态

    2021-05-15 10:24:33
  • python中parser.add_argument()用法实例(命令行选项、参数和子命令解析器)

    2022-06-09 03:54:43
  • 解决iframe的frameborder在chrome/ff/ie下的差异

    2023-08-09 00:23:24
  • 介绍Python的Urllib库的一些高级用法

    2023-03-29 08:28:06
  • Python的基本语法详解

    2022-10-27 22:38:42
  • Linux虚拟机下mysql 5.7安装配置方法图文教程

    2024-01-13 11:55:08
  • javascript开发随笔一 preventDefault的必要

    2024-04-26 17:14:05
  • asp之家 网络编程 m.aspxhome.com