here is ma rss code,
this display description in Arabic but in title it doesn’t change text
<?xml version="1.0" encoding="utf-8" ?>
<rss version="2.0">
<channel>
<title>NewsLineME.com - All News</title>
<description>Visit NewsLine for latest news.</description>
<language>ar</language>
<link>http://50.23.16.193/newsline/</link>
<lastBuildDate>Thu, 22 Mar 2012 00:48:13 -0500</lastBuildDate>
<pubDate>Mon, 06 Dec 2011 16:45:00 +0000</pubDate>
<ttl>1800</ttl>
<item>
<title>&#1607;&#1604; &#1610;&#1578;&#1605;&#1603;&#1606; &#1575;&#1604;&#1593;&#1585;&#1575;&#1602; &#1605;&#1606; &#1578;&#1580;&#1575;&#1608;&#1586; &#1571;&#1586;&#1605;&#1575;&#1578;&#1607; &#1575;&#1604;&#1587;&#1610;&#1575;&#1587;&#1610;&#1577; &#1608;</title>
<description>
<![CDATA[انتقد رئيس إقليم العراق مسعود بارزاني بشدة رئيس الوزراء العراقي نوري المالكي متهما إياه باحتكار السلطة وبناء جيش يأتمر بأوامره.]]>
</description>
<link>http://50.23.16.193/newsline/index.php?file=news_detail/news_detail&translation=ara&id=72&cid=3</link>
<pubDate>Tue, 20 Mar 2012 11:17:00 -0500</pubDate>
</item>
</channel>
</rss>
when you run this file in Firefox it will display description in Arabic but title goes same. Can anybody help me with this problem how to convert those character in Arabic.
I’m surprised that either the title or the description is coming out as you expect, since in both cases you have double-escaped the characters. Specifically, while
نmight represent an arabic character,&#1606;and<![CDATA[ن]]>both simply represent the sequence of 7 ascii characters (&, #, 1, 6, 0, 6, ;). If you want your markup treated as markup, don’t escape it.