Response.Write("asd1 X : " + HttpUtility.HtmlEncode("×"));
Response.Write("asd2 X : " + HttpUtility.HtmlEncode("✖"));
的拳頭之一是:
asd1 X : × // OK, ENCODED AS HTML ENTITIES
第二沒有,只是✖:
asd2 X : ✖
哪種字符的是什麼?另外,如果我嘗試here結果是:
asd1 X : ×
asd2 X : ✖
什麼?爲什麼這種差異?
字符是UTF-8還是Windows 1251? –
呃...但實體可能是普遍的,不管關於字符集,我錯了嗎? – markzzz
貌似Unicode字符[2716](http://www.fileformat.info/info/unicode/char/2716/index.htm) – Oded