I have the following hexadecimal representation of a unicode character 2211
How can this be converted to a unicode chatacter?
I have searched the system.text.convert namespace... but found nothing useful :(
kind regards
Henrik
Printable View
I have the following hexadecimal representation of a unicode character 2211
How can this be converted to a unicode chatacter?
I have searched the system.text.convert namespace... but found nothing useful :(
kind regards
Henrik
Hi.
Is this usefull?
VB Code:
MsgBox(Asc(ChrW(2211)))
This will return 63.
According to The Help ChrW functions takes a unicode and returns a Char.
2211 is the unicode hexadecimal representation of the "sum"character (the greece letter)... I don't think it is represented in ascii. I need som way to print this in a math program im doing...
kind regards
HEnrik
Hi.
in my first post, I didn't realize that it was hex, but still, it shouldn't matter.
VB Code:
MsgBox(ChrW(&H2211))
This will show a msgbox with the "sum" character. so this should also apply to labels and textboxes. And if you're using DrawString to draw to a graphics object, e.i. a printdocument, I would expect it to work as well, assuming the font you're using are correct.