I have a database (SQL Server 2012) which has a lot of Unicode data. records inserted from a web application but character are saved in web character encoding 'western' but they are Unicode when this data shown in browsers, browsers automatically change their character encoding to 'Unicode' and show the characters correct but I want to use this data in my application and I want to change them in real Unicode characters
For examples character are saved in tables like this (with 'western' encoding):
Ù¾ÛŒØ´Ø±ÙØª 50 درصدی مخزن ذخیره آب بوشهر
and I want to convert them into unicode encoding like this :
پیشرفت 50 درصدی مخزن ذخیره آب بوشهر
NVARCHARcolumns.nvarcharis stored asUCS-2. This is not configurable.NVARCHAR, then there is no encoding for those columns - they are Unicode - period. Were these column possibly of typevarcharbefore and then converted tonvarcharafter data had already been populated?