I'm pulling data using System.Net.WebClient
from a web site, and when the data comes back everything parses and looks good except letters with accents. For example, when it returns an é
, SQL Server 2008 saves it as é
.
Just need to figure out how to convert these UTF-8 characters into something SQL Server can read. I'm storing it in an NVARCHAR(MAX)
datatype.
I'm using Linq-to-SQL to insert into the database if you were curious.
Any thoughts on what I could do to convert it to the proper format?