Forum Discussion
1234598765
Aug 21, 2019Copper Contributor
Notepad Default encoding UTF8 Windows 10 Version 1903
Hello, does anyone know if you can re-enable ANSI encoding by registry in the notepad, instead of the default UTF8 encoding, which is given since Windows 10 version 1903.
lexikos
Jan 08, 2020Copper Contributor
"è" is not an ASCII character. ASCII only covers codes 0 to 127. Under all ANSI code pages and UTF-8, these values have the same meaning. A file containing only these values will be interpreted the same regardless of which code page is selected (excluding UTF-16).
salclem2
Jan 12, 2020Copper Contributor
Not true. ASCII table code has 256 codes, from 0 to 255.
- dretzerJan 13, 2020Iron Contributor
Sorry, but lexikos is actually right. ASCII is a 7-bit character encoding, which means it has 2^7=128 possible values. What you mean is extended ASCII which is actually a 8-bit extension to original ASCII. This keeps the original 128 ASCII encoding and adds another 128 on top of it.
So in decimal characters 0 - 127 are original ASCII and characters 128 - 255 are extended ASCII characters.