This is the code :
Response.Write("asd1 X : " + HttpUtility.HtmlEncode("×"));
Response.Write("asd2 X : " + HttpUtility.HtmlEncode("✖"));
The fist one is :
asd1 X : × // OK, ENCODED AS HTML ENTITIES
the second no, just ✖ :
asd2 X : ✖
which kind of char is that? Also, if I try here the result is :
asd1 X : ×
asd2 X : ✖
What?? Why this differences?