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!