Changing the Default Character Set (Windows)
From myhosting.com Wiki
Answer: All you need to do to change the default character set for your web page is to add a character set declaration within the HEAD of your HTML document. Please see the examples below:
Turkish:
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-9">
Polish:
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-2">
For more information on defining character encodings for your documents, you can refer to the w3.org site.
