I am dealing with API calls and retrieving xml which is described below.
<?xml version="1.0" encoding="utf-16"?>
<backlinks>
<asd><Click Here for  tips to help you get around></asd>
<sourcetitle>《新加坡》住宿@戴斯旅店 Days Hotel Singapore-歡遊世界</sourcetitle>
</backlinks>
I am using SQL Server 2008 and I have a xml column in my database table, in which I want to store this value.
I tried with CDATA, it is working fine for 
as well as working fine If I remove encoding from the xml string for whole mentioned xml. But at the time when I try to retrieve an xml then It shows like this.
<backlinks>
<asd>Click Here for &#x3; tips to help you get around</asd>
<sourcetitle>«???»??@???? Days Hotel Singapore-????</sourcetitle>
</backlinks>
I want exactly output which I had entered as an input.
Thank you all in advance.