Problem displaying arabic numbers in arabic!

Hi all ,

I’m facing a problem … which I can’t understand .

Arabic numbers doesn’t dispaly well in web page…

After some googling, I found this code which displayed arabic numbers well …

[COLOR=#800080]<!DOCTYPE html PUBLIC “-//W3C//DTD HTML 4.0 Final//EN”>[/COLOR][COLOR=#000000]

[/COLOR]

<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
        <style type="text/css">
            body { direction: rtl; }
        </style>
    </head>

    <body>
        &#1780;&#1778;
    </body>
</html>


But I found that , If I write any other number in the same page , it’s dislayed in english !!And if I copy number from the already written in the previous code, it’s displayed in arabic !

and this is my tiral (In which the copied numbers are displayed in english while the written numbers are displayed in arabic) :


<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Final//EN">
<html>    <head>        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">        <style type="text/css">            body { direction: rtl; }        </style>    </head>
    <body>                        &#1605;&#1589;&#1591;&#1601;&#1609;
    22                &#1778;                2
&#1778;  &#1778;     </body></html>

Thanks for any trial to help …