I am trying to save this Swedish string "120918_demo_öar.jpg"
to MySQL database. Strangely, the value that is getting stored in the database is "120918_demo_o¨ar.jpg"
Initially, I thought this was a MySQL issue, but found out that that was not the case.
In code, I get this string "120918_demo_öar.jpg"
by parsing XML stored in an SQL Server Database table. The string is stored to a variable named imgName
If I do,
imgName == "120918_demo_öar.jpg"
, it gives false and
imgName.Equals("120918_demo_öar.jpg")
also gives false
I have no idea what the issue is. Please help
Thanks in advance
Vivek