I am trying to print right filled arrow ► in C# this is I tried
static void Main(string[] args) {
Console.WriteLine((char)16);
}
but it is showing the output as ?
(question mark)
I have gone through this question also but the it doesn't seem to work.
Can you help me with correct ASCII code which shows the correct output?