I converted all my files to UTF-8 without BOM encoding using Notepad++. I have no problem with BOMs anymore but the UTF without BOM encoding is simply not working, it’s as if my site was encoded in ANSI. All special characters display either as: Â, Ú or á.
What can be the reason for this and how can I fix it?
http://chusmix.com/?ciudad=Pilar
Thanks
You have to tell the browser to accept it as UTF-8 so it will properly parse multibyte characters. Add this meta tag in your
<head>tag with the rest of your metas:<meta http-equiv="content-type" content="text/html; charset=UTF-8" />Update
For HTML5, use this tag instead:
<meta charset="utf-8">