💻 Software
Font for Wine that supports the entire character set of the Win32 Console?
Fresh7 days ago
Mar 15, 20263973 viewsConfidence Score0%
0%
Problem
I would like to be able to display in the Wine console all characters that the Win32 console can display. I've written a small test program to print out all 8-bit characters: Under Wine, the best I can do so far is using Andale Mono: While this is what I see on Windows Server 2008: Is there anywher…
Error Output
#include <stdio.h>
int main(int argc, char *argv[]) {
int i, j;
for (i = 0; i <= 0xF0; i+=0x10) {
for (j = i; j <= i + 0x0F; ++j)
prin…Unverified for your environment
Select your OS to check compatibility.
1 Fix
Canonical Fix
Unverified Fix
New Fix – Awaiting Verification
Fix for: Font for Wine that supports the entire character set of the Win32 Console?
Low Risk
The Lucida Console font, which ships with Windows, is one of two fonts you can choose in the Windows Console, and supports the full character set demonstrated above (as well as many other accented Latin characters). It can be purchased from Ascender…
Awaiting Verification
Be the first to verify this fix
Sign in to verify this fix