mkas
mkas

Reputation: 513

How to force UTF-8 encoding in browser?

I have page which encoding is declared with

<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />

But when I enter the page another encoding (ISO) is chosen in browser. I have tried to set encoding by PHP method

header('Content-type: text/html; charset=utf-8');

But it also didn't help. All source files are encoded in UTF-8 without BOM. The only solution which I tried and it had worked was setting encoding in .htaccess file by adding AddDefaultCharset UTF-8 line, but then another pages on the server were not displayed correctly. How can I solve this problem?

Upvotes: 13

Views: 54952

Answers (1)

Gerben
Gerben

Reputation: 16825

Disable default charset:

AddDefaultCharset Off

Upvotes: 8

Related Questions