So, some users have decided to paste word documents into the app I work on. As a result we have the likes of this â–¼ in the database, this should be a black downward triangle like this ▼
Now the app uses a .vbs file to get the data and display it to a classic asp page, the problem is, if I do a replace looking for â–¼ the vbs has already converted it to a ▼ and of course it never finds it, so i just end up with â–¼ being displayed asp page.
so even though i wrote this
strRet = replace(strRet, "â–¼", "▼")
when I debug it looks like this
strRet = replace(strRet, "▼", "▼")
Does anyone know how I can get vbs to look for the actual string of characters