I searched through the net but didn't found a solution for printing a sad smiley in a c# console Program.
I can print a happy smiley using:
Console.Write((char)1);
I also tried:
Console.Write('\u2639'.ToString());
But it only appears a '?' on the console.
Could someone please help me?
Thx (: