The international standard is only the first half of the table, i.e. characters with numbers from 0 (00000000), up to 127 (01111111)
Alternative part of the table (Russian). The second half of the ASCII code table, called the code page (128 codes starting from 10,000,000 and ending with 11111111), can have different options, each option has its own number. The code page is primarily used to place national alphabets other than Latin. In Russian national encodings in this part of the table are placed the characters of the Russian alphabet.
The following code works as it should, if the correct localization (for us) is specified on the machine:
byte[] Test = new byte[] { 195 }; Encoding.Default.GetString(Test);
But! Using Default is a dangerous way. It breaks down on a machine where another localization is currently used.