I want to display superscript 3 in console application. I've tried the following methods but none of them works.
Console.WriteLine("\xB3");
(from here)
Console.WriteLine("³");
// Copied from charmap.exe and also from Wikipedia
How can I display it?