I'm trying to create a Backgammon game board using Unicode graphics with an array back-end. For example; White Draughts Man: U+26C0 to represent checkers on a slot. What do I need to do to make this work ?
I've tried using ChrW() with the Unicode that is given from a Unicode table elsewhere
PS: This code is from a test application before adding to my actual assignment. I just receive an error.
Sub Main()
Console.OutputEncoding = System.Text.Encoding.Unicode
Console.WriteLine(ChrW(&H26C0))
Console.ReadKey()
End Sub