UTF8 Page Encoding and what it does.
Hi,
Have you ever loaded up a web page and found funny looking symbols in your text where there should just be normal text? Take a look at this screen capture:

Those funky symbols are appearing because you are using symbols (in your web page) that fall outside the normal character space range … you need to tell your browser you want to use international symbols.
To do this, you need to add the UTF8 meta tag:
<meta http-equiv=”Content-Type” content=”text/html; charset=utf-8″>
And this is what you will get:

Hope that helps.
Stefan Mischook
www.killersites.com
January 26th, 2009 at 10:24 am
Dreamweaver adds the utf-8 charset meta tag by default to new html pages, something I’ve always been mildly curious about but too lazy to research.
Thanks for the explanation!