Wondering what encoding to use for your web pages? Wonder no longer. Always use UTF-8 encoding. It is the single best encoding, supports the most characters, the most languages, and is available on every browser. That is all you need to know: always use UTF-8.
Never, ever, ever think that ISO-8859 is sufficient for ANY task.
Most web servers and other web page support default to ISO-8859-1 character set/encoding. Your first job as a program is to change that to UTF-8. There is no reason — ever — to leave it as 8859-1. There is no advantage that 8859 has over UTF-8, and there is no browser in the world that can not handle UTF-8.
If you are a programmer working on a web project, the first thing you need to do is point your browser at your project, and check the “Page Info” in the browser. It had better say UTF-8 encoding.
If the page info for a page in your project says ISO-8859-1, just remember, this is a time bomb waiting to happen. Someone will paste text from MS Word with a smart quote in it, or a fancy dash, and they will get garbage. No reason to let this time bomb tick: learn how to use UTF-8 now, and leave ALL other encodings behind. UTF-8 is the only character encoding you will ever need for display of web pages for any time, now or in the future.
One additional note for the techno geek: UTF-8 can represent over 4 billion different characters. It can encode hundreds of times more characters than all known character sets combined — even the ones that some people claim to be outside of Unicode. This is because UTF-8 is an encoding, not a character set. Characters that are not today included in the Unicode character set might some day be mapped to an official range in Unicode. When this happens, you are already set for it, because UTF-8 does not have to be changed. As a web site designer, you really need only choose UTF-8 today, and never have to worry about it again.