S
S
sw0rl0k2015-06-23 12:00:17
Character encoding
sw0rl0k, 2015-06-23 12:00:17

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>

The result is this:
fc44fb47cb06490cb8936d56e9de7357.png
In Chrome and IE the result is the same

Answer the question

In order to leave comments, you need to log in

1 answer(s)
D
Denis Ineshin, 2015-06-23
@sw0rl0k

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 question

Ask a Question

731 491 924 answers to any question