Answer the question
In order to leave comments, you need to log in
How to solve the problem with Cyrillic encoding in Brackets?
Hello! Faced such a problem, Brackets somehow crookedly saves the file encoding. When opening pages created in Brackets, all Cyrillic text becomes krakozyabry. You have to open each file in notepad and stupidly save it with the same UTF-8 encoding. Is there a solution to this problem so that Brackets saves files normally right away?
Denis Ineshin :
yes, for any page, even like this:
<!DOCTYPE html>
<html>
<head>
<title>Тест</title>
</head>
<body>
Тест кодировки
</body>
</html>
Answer the question
In order to leave comments, you need to log in
And it should be like this:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"> <!--Кодировка страницы-->
<title>Тест</title>
</head>
<body>
Тест кодировки
</body>
</html>
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question