When I run the following, the characters are not displayed as they should be, whether or not Unicode is set in TCC Options. When I output it to a file and view the file in a text editor (gvim), the characters are correct. How can I get them to be displayed correctly in Take Command/TCC? I use the same font in gvim as I do in Take Command (Bitstream Vera Sans Mono).
#include <stdio.h>
int main() {
printf("xæøx");
return 0;
}
> a.out
xµ°x
#include <stdio.h>
int main() {
printf("xæøx");
return 0;
}
> a.out
xµ°x