ASP UTF-8页面乱码+GB2312转UTF-8 +生成UTF-8格式的文件(编码)第1/2页

2019-04-01 23:13:25于丽

do while len(tempstr)<4
tempstr="0" & tempstr
loop
c16to2=c16to2 & tempstr
next
end function

function c10to2(x)
mysign=sgn(x)
x=abs(x)
DigS=1
do
if x<2^DigS then
exit do
else
DigS=DigS+1
end if
loop
tempnum=x

i=0
for i=DigS to 1 step-1
if tempnum>=2^(i-1) then
tempnum=tempnum-2^(i-1)
c10to2=c10to2 & "1"
else
c10to2=c10to2 & "0"
end if
next
if mysign=-1 then c10to2="-" & c10to2
end function

GB2312转UTF-8

'个人代码风格注释(变量名中第一个小写字母表表示变量类型)
'i:为Integer型;
's:为String;
Function U2UTF8(Byval a_iNum)
Dim sResult,sUTF8
Dim iTemp,iHexNum,i

iHexNum = Trim(a_iNum)

If iHexNum = "" Then
Exit Function
End If

sResult = ""

If (iHexNum < 128) Then
sResult = sResult & iHexNum
ElseIf (iHexNum < 2048) Then
sResult = ChrB(&H80 + (iHexNum And &H3F))
iHexNum = iHexNum &H40
sResult = ChrB(&HC0 + (iHexNum And &H1F)) & sResult
ElseIf (iHexNum < 65536) Then
sResult = ChrB(&H80 + (iHexNum And &H3F))
iHexNum = iHexNum &H40
sResult = ChrB(&H80 + (iHexNum And &H3F)) & sResult
iHexNum = iHexNum &H40
sResult = ChrB(&HE0 + (iHexNum And &HF)) & sResult
End If

U2UTF8 = sResult
End Function

Function GB2UTF(Byval a_sStr)
Dim sGB,sResult,sTemp
Dim iLen,iUnicode,iTemp,i

sGB = Trim(a_sStr)
iLen = Len(sGB)
For i = 1 To iLen
sTemp = Mid(sGB,i,1)
iTemp = Asc(sTemp)

If (iTemp>127 OR iTemp<0) Then
iUnicode = AscW(sTemp)
If iUnicode<0 Then
iUnicode = iUnicode + 65536
End If
Else
iUnicode = iTemp
End If

sResult = sResult & U2UTF8(iUnicode)
Next

GB2UTF = sResult
End Function

'调用方法
Response.BinaryWrite(GB2UTF("中国人"))
12下一页阅读全文

您可能感兴趣的文章:

将字符串转换成gb2312或者utf-8编码的参数(js版)php实现utf-8和GB2312编码相互转换函数代码UTF-8 GBK UTF8 GB2312 之间的区别和关系介绍PHP字符编码问题之GB2312 VS UTF-8解决方法VBS实现GB2312,UTF-8,Unicode,BIG5编码转换工具PHP 解决utf-8和gb2312编码转换问题unicode utf-8 gb18030 gb2312 gbk各种编码对比ASP中Utf-8与Gb2312编码转换乱码问题的解决方法 页面编码声明MSSQL转MYSQL,gb2312转utf-8无乱码解决方法PHP iconv 解决utf-8和gb2312编码转换问题用VBS实现的批量gb2312转utf-8,支持拖动用javascript实现gb2312转utf-8的脚本[转]ASP实现关键词获取(各搜索引擎,GB2312及UTF-8)UTF-8转GB2312函数utf-8编码转换成gb2312将编码从GB2312转成UTF-8的方法汇总(从前台、程序、数据库)