Is there any way to find what is the default character encoding in Windows? I know that in Western Europe and the US, CP-1252 is the default, but need to check this on other Windows machines too.
Alternatively, is there any list of default encodings per locale?
41 Answer
You can check with PowerShell:
[System.Text.Encoding]::Defaultwhich even enables you to check that across several machines at once.