IE reverses Arab charterers automatically

I am currently using Arabic to display a message in Internet Explorer. The web browser automatically changes the Arabic character. I believe that this is the correct behavior, but I do not want the browser to automatically change its Arabic characters. Do you have an idea, which setting will help me turn off the automatic reverse navigation by the browser?

For instance:

HTML source code:

<html lang="ar" dir="ltr">
    <body>
        <p>
            &#1570;
        </p>
        <p>
            &#1581;
        </p>
        <div>
            &#1570;&#1581;
        </div>
    </body>
    </html>

Actual output:

آ

ح

آح

Expected Result:

آ

ح

ح آ

+4
source share
1 answer

- , . , , .

" " (&#x202d;) , , . &#x202c; ( "- " ) , .

&#x202d;&#1570;&#1581;&#x202c;

‭آح‬

, :

&#1581;&#1570;

حآ

( -, , - Unicode, , , )

+2

Source: https://habr.com/ru/post/1568624/


All Articles