Display SW direction arrow in Console,C sharp.
I have a question in displaying arrows(Unicode) on console window.
I want to display '\u2199' which is the Unicode value for "South west" direction arrow on console window.
When I try to execute the following,a '?' question mark is displayed on console window.
static void Main(){
char c = '\u2199';
Console.Write(c);}
However, I can display an North,south,east,west arrows using their respective unicodes but cannot display NE,NW,SE,SW.
I am not sure what should be done to display "SW' arrow.