I know you can put Unicode character codes in a VB.Net string like this:
str = Chr(&H0030) & \"More text\"
I would like to know how
Use the ChrW() function to return Unicode characters.
ChrW()
Dim strW As String strW = ChrW(&H25B2) & "More text"