• 0

VB.NET 2013: Unicode Character in MessageBox


Question

I can't seem to find an answer to this.

I have a Windows Character Map Code of U+00BB, but I have no idea how to get it to display with my MessageBox.

I've tried ChrW, and that doesn't work.

 

Any ideas?

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

My VB.NET is rusty but ChrW does work, use &H to represent a hexidecimal number.

    Private Sub UnicodeTest(Sender As Object, E As EventArgs) Handles Button1.Click
        MessageBox.Show("This is some Unicode: " + ChrW(&HBB))
    End Sub
Link to comment
Share on other sites

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.