I'm trying to output θ (theta) on a console applicatation and I searched on Google and found that I have to use Unicode to output any greek symbols. So the code I used was:
Console.WriteLine("\u03B8 (deg) R (m) \t T (kN) FOS");
But instead of printing 'θ', '?' is printed. Can somebody advise me please?