This is the code:
Response.Write("asd1 X : " + HttpUtility.HtmlEncode("×")); Response.Write("asd2 X : " + HttpUtility.HtmlEncode("✖"));
The first one is:
asd1 X : &
second no, just ✖:
asd2 X : ✖
what kind of char? Also, if I try here , the result will be as follows:
asd1 X : × asd2 X : &
What?? Why are these differences?
source share