2

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

&Iacute;

Nothing changes and it keeps appearing as "É" instead. Any suggestions?

Thanks

DONSTEPHZ
  • 35
  • 1
  • 6

1 Answers1

0

Add in .htaccess

php_value default_charset None 
AddDefaultCharset UTF-8
Niranjan Kumar
  • 1,438
  • 1
  • 12
  • 29