I have an HTML page that is from right to left. When I do not use any doctype, my numbers are in Arabic / Persian, but when I use strict mode, they translate into English.
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Final//EN">
Before adding doctype:

After adding doctype:

I also added these meta tags to my page:
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <meta http-equiv="Content-Language" content="fa" />
So, how can I view Arabic numbers on a page with strict doctype (in IE, because Firefox does not show Arabic numbers)?
html numbers doctype xhtml-1.0-strict arabic
Mahdi
source share