this is a first-time question from a beginner who's learning c#. I had just learned about how you can "convert numbers to characters" by explicitly typecasting an integer into the char method, therefore being able to print the character it shares binary with (sorry about my sucky terminology). But when I try to do this, all the terminal prints is a question mark. Here's the code: char a = (char)977;
Console.WriteLine(a); When I run this, all I get is ? Thanks for taking the time to help out a beginner.