How can I get unicode value for char?
For example, I know that I can do this with ascii:
i = Asc("a") // i == 97 (correct)
What if I have a unicode char though?
i = Asc("β’")
Obviously, the second example does not work, because this character is not in the Ascii set. Is there an equivalent function that I can use that will return 8226 instead of the wrong result 149 ?
I do this in Outlook 2003, if that matters.
vba unicode
Senseful
source share