If I create a cookie with the value 'ë' on the server, it becomes 'ë' when I read it on the client side.
This only occurs with IE (10). I don't get this issue with other browsers (Chrome and Firefox).
The way the cookie is created:
HttpContext.Current.Response.Cookies.Add(new HttpCookie("test", "ë"));