Hello @cell-test, and All,
I uploaded your test.log file and I got, as expected, a displayable file, like @MapJE71 did !?
I just noticed that the Properties window of your file it gives a size of 2,264 Bytes. As for me, the size of the uploaded file is 1,501 bytes, only ! It’s an UTF-8 encoding file. where all characters code are under \x{0080}. So number of bytes = number of characters = 1501
Remainder :
To get the number of characters, of current file, looks at the length : zone, in the middle of the status bar
To get the number of bytes, of current file, choose View > Summary… and see the line File length (in byte)
I created a copy, with the UCS-2 LE BOM encoding ( which is the default Windows Unicode encoding ) and I got a file of 3,004 bytes. This is logical, as, with that encoding, each character is coded with two bytes + the invisible Byte Order Mark, in two bytes, as well => 2 x 1,501 + 2 for BOM = 3,004 bytes !
Unfortunately, this value is also different from the 2,264 one ! So, like @MapJE71, I’m at a dead end, too ! It could be interesting to open that specific file with an hexadecimal editor, which will give you the exact code point of each character !
Best Regards,
guy038