Click here to Skip to main content
15,886,063 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I need a simple function to convert an ASCIII string to a Unicode string, cause I need to display data in a web page.
Why does not VBScript offer a so useful built-in function?
Posted

1 solution

Look at this:An A-Z Index of Windows VBScript commands (WSH)[^]

Wouldn't the combination of these two command do for you:
Asc(String) Return ASCII code for string
AscW(String) Return Unicode code for string
 
Share this answer
 
Comments
Albin Abel 21-Apr-11 12:13pm    
Good answer. 5
Sandeep Mewara 21-Apr-11 12:15pm    
Thanks Albin.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900