you can set this in your web.config file
<globalization requestEncoding="utf-8" responseEncoding="utf-8" /> (or you can set decode/encode for that specific page).
this will convert all into utf characters.
to store this in the database, i suggest you use nvarchar instead of varchar data type.
hope this is help for you!