I make pages with Russian texts and in chrome veiw-code see this: img
How can I change this symbols to text?
Since I dont have way to comment I have to put, cannot you tell the page to use russian alphabet?
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>
Since you didn't put your code i assume that you didn't set the charset to utf-8.