Why can't I print Greek letters?
I've tried on both the web and mobile code playgrounds' and in each case, when I try to run https://code.sololearn.com/cwzJWnneFor8/#cs the results are the same: 1. I get only a subset of Greek letters (for instance, no zeta, ζ); the rest get printed as '?'; 2. I get the wrong case for some letters (like both lowercase and capital alpha come out as α, neither as Α); 3. Some letters are only available in one case (like β, µ in only lowercase and Γ, Θ, Ω only in capitals). Only sigma σ/Σ and phi φ/Φ print correctly in both lowercase and capitals. I read up on printing Unicode to console in C#, and I tried to most-frequently suggested solution, changing OutputEncoding to UTF-8, but as you see, that just results in weird mojibake (junk characters). Entirely missing a theta θ suggests to me it isn't a font issue—what fonts have a lowercase tau, but no lowercase gamma or theta? I'd appreciate any solution that will print these characters. I tried every way I could think of in this code. Thanks!