Extended ASCII characters displaying '?' #1698
Unanswered
Overdrive77
asked this question in
Q&A
Replies: 1 comment 1 reply
-
The standard font does not have any symbol for that character. It is possible to set the font to a custom one which has a symbol for all extended ascii chars. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I'm using Console.Write() to draw a DOS styled box using ASCII box shape codes. But the output is displaying question marks instead of box shapes.
Create a new CosmosOS project and inside Run() method enter the following:
Console.WriteLine([█████]);
Console.WriteLine($"{new string((char)219, 5)}");
Would output:
[?????]
[?????]
Is this a bug? Or am I missing something? Does someone know how to include these chars?
For more information about the characters I'm interested in see: http://www.asciitable.com/ chars 176 - 223
Beta Was this translation helpful? Give feedback.
All reactions