I'm simply trying to write ISO characters to a file using CHR$(x) where x is between 32 and 255. I've tried PRINT (sequential output) and PUT$ (binary files) but the data seems to be modified by PB before it is written,
PUT$ #1,CHr$("AB",192,13,10) ' 4 characters
PRODUCES THE HEX STRING
41 42 EF BF BD 0A ' 5 characters?
Is the there a code page setting required to simply be able to output all characters above ASCII 32? UTF-8 and ISO tags don't give me any hits neither in the Help file nor on the forums.
I'm using the CC compiler version 5.01.0100.
PUT$ #1,CHr$("AB",192,13,10) ' 4 characters
PRODUCES THE HEX STRING
41 42 EF BF BD 0A ' 5 characters?
Is the there a code page setting required to simply be able to output all characters above ASCII 32? UTF-8 and ISO tags don't give me any hits neither in the Help file nor on the forums.
I'm using the CC compiler version 5.01.0100.
Comment