0

I have a simple page which shows ????????????,It is russian language and i want to show it as it is

<!DOCTYPE>
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
 <body>
тыуиппюлкйчг
</body>
</html>
Slava Vedenin
  • 58,326
  • 13
  • 40
  • 59
user3244721
  • 714
  • 2
  • 11
  • 29

1 Answers1

2

Ensure that:

  • Your editor is configured to save the file using UTF-8 and
  • Whatever method you are using to put the file on the server is not mangling the encoding (e.g. use FTP binary mode and not text mode) and
  • Your server is not sending a Content-Type HTTP response header that contradicts (and overrides) the document level declaration that the document is UTF-8.
Quentin
  • 914,110
  • 126
  • 1,211
  • 1,335