I am having a hard time making an "Í" work! It just keeps appearing me a "É" and I can't figure out why. Curiusly enough, it only happens with capital I, when it is a "í", everything works just fine.
What I have tried so far:
Specify the codification on the head
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
Another way on the head
<meta charset="UTF-8">
with .php
<?php
header('Content-type: text/html; charset=utf-8');
?>
.htaccess
AddCharset UTF-8 .html
Another way on the .htaccess
AddDefaultCharset Off
Manualy replace the "Í" for the element
Í
Nothing changes and it keeps appearing as "É" instead. Any suggestions?
Thanks