View previous topic :: View next topic |
Author |
Message |
StamK
Joined: 12 Oct 2016 Posts: 163
|
Posted: Tue Feb 04, 2025 12:37 pm Post subject: SDBG variable output with unicode |
|
|
if I use SDBG to visualise the contents of a variable that contains greek characters from a utf-8 file they look garbled up. If I put print statements that go to a cmd console window I can see them properly. Also if I use the /windows command in the compilation (which opens a separate white screen with all output) there the print statements are garbled up.
Is there away to fix these two issues? |
|
Back to top |
|
 |
Robert

Joined: 29 Nov 2006 Posts: 457 Location: Manchester
|
Posted: Tue Feb 04, 2025 6:19 pm Post subject: |
|
|
sdbg, like Fortran I suppose, has no concept of utf8 so the non ASCII characters will come out garbled.
My guess is the console is a utf8 device so that is how it looks correct there. When using /windows ClearWin is just taking strings and printing them with no context. Do you have a simple example? |
|
Back to top |
|
 |
|