0

I make pages with Russian texts and in chrome veiw-code see this: img

How can I change this symbols to text?

Kir
  • 25
  • 5

3 Answers3

0

Since I dont have way to comment I have to put, cannot you tell the page to use russian alphabet?

0

Cyrillic text should automatically be converted if properly formatted. Look at this page for reference on Cyrillic signs as HTML entities; W3 Schools Cyrillic text

You might also want to specify that your website is using UTF-8 by placing the meta-charset tag in the header section of your HTML;

<head>
  <meta charset="UTF-8">
</head>
Thomas Darvik
  • 748
  • 7
  • 22
0

Since you didn't put your code i assume that you didn't set the charset to utf-8.

Try Set HTTP header to UTF-8 using PHP

A. Meshu
  • 4,053
  • 2
  • 20
  • 34