H
H
HelpSophie2018-12-28 21:31:18
css
HelpSophie, 2018-12-28 21:31:18

When compiling LESS to CSS, the Cyrillic alphabet turns into krakozyabry, how to fix it?

LESS: ::before {content: "ы";}
or
::before {content: "→";}
at the output in css it turns into a krakozyabra.
I tried to install charset both in the main less file and in the one in which these characters are, it does not help.
For half a day I thought that these were encoding problems on the server and / or files, but it turned out that at the time of compilation.

Answer the question

In order to leave comments, you need to log in

1 answer(s)
T
tyzberd, 2018-12-28
@tyzberd

span:after {
    content: '\0439';
}
span:after {
    content: '\2192';
}

https://www.compart.com/en/unicode/U+2192

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question