Now I purchase this ONE exception, that cannot display the files correctly.
I am looking for an explanation of why this suddenly happens.
After that I want to fix the problem in the NEW machine.
The underlying problem is that a .txt format does not convey what the binary values
mean - i.e., the .txt format doesn't tell which character set it uses!
So, the only ways they have when opening your .txt file are:
1) Ask the user every time you open a .txt file, or,
2) Assume, possibly using an operating system wide setting
To make everything appear easy, software designers often choose 2), especially for simplistic programs like MS Notepad. However, about every 20 years, the assumptions change. We (Scandinavian countries) had our de-facto assumed character encodings between about 1995 to about 2010, which worked fairly well. Now we have been in a fuzzy area again, but it
seems this will be less of an issue as time goes by and everybody's just using UTF-8. Maybe simplistic (headerless, metadataless) formats such as .txt also phase out slowly.
There is nothing wrong in your computer, nor in your text files. Everything worked out for you by lucky assumption. Now it's just working as it's supposed to: with manual extra work of guiding the editor. You either are lucky, or you need to do this manual step. Use any text editor that allows you to choose the character encoding when opening a file, instead of just assuming it. This editor may not come with your operating system, so you may need to download an external, third-party program. Then, it's completely up to you whether you keep the files as they are, opening them with such an editor that can handle them; or whether you want to convert them to Unicode/UTF-8; or something else. You don't
need to convert them.
Hope this helps.