<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="ar">
<body>
<p>بيـــان أعـــرف عميــــــلك</p>
</body>
</html>
I am getting this as my result : بيـــان أعـــر٠عميــــــلك
Can anyone help me?
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="ar">
<body>
<p>بيـــان أعـــرف عميــــــلك</p>
</body>
</html>
I am getting this as my result : بيـــان أعـــر٠عميــــــلك
Can anyone help me?
Strangely, I can't repeat your results in my browser. Where do you get your results?
However, I think what Xufox suggests is a good practice, to set charset as utf-8
in you meta tag in header
.
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="ar">
<head>
<meta charset="utf-8"/>
</head>
<body>
<p>بيـــان أعـــرف عميــــــلك</p>
</body>
</html>
بيـــان أعـــرف عميــــــلك
– Nitesh Kataria Dec 23 '15 at 12:56