What is the difference between   and  ?

前端 未结 2 1574
孤独总比滥情好
孤独总比滥情好 2021-01-03 20:05

I have written one XSLT to transform xml to html. If input xml node contains only space then it inserts the space using following code.

&         


        
2条回答
  •  天涯浪人
    2021-01-03 20:27

    It's the same. It's a numeric character reference. A0 is the same number as 160. The first is in base 16 (hexadecimal) and the second is in base 10 (decimal, everyday base).

提交回复
热议问题