zoukankan      html  css  js  c++  java
  • How to use special characters in XML?

    https://dvteclipse.com/documentation/svlinter/How_to_use_special_characters_in_XML.3F.html

    Because XML syntax uses some characters for tags and attributes it is not possible to directly use those characters inside XML tags or attribute values.

    To include special characters inside XML files you must use the numeric character reference instead of that character. The numeric character reference must be UTF-8 because the supported encoding for XML files is defined in the prolog as encoding="UTF-8" and should not be changed.

    The numeric character reference uses the format:

    &#nn; decimal form

    &#xhh; hexadecimal form

    Code Name Displayed as
    	 Horizontal tab non-printing
    
 Line feed non-printing
    
 Carriage Return non-printing
      Space non-printing
    ! Exclamation mark !
    " Quotation mark "
    # Number sign #
    $ Dollar sign $
    % Percent sign %
    & Ampersand &
    ' Apostrophe '
    ( Left parenthesis (
    ) Right parenthesis )
    * Asterisk *
    + Plus sign +
    , Comma ,
    - Hyphen -
    . Period .
    / Slash /
    : Colon :
    &#59; Semi-colon ;
    &#60; Less than <
    &#61; Equals sign =
    &#62; Greater than >
    &#63; Question mark ?
    &#64; At @
    &#91; Left square bracket [
    &#92; Bbackslash
    &#93; Right square bracket ]
    &#94; Caret ^
    &#95; Underscore _
    &#96; Acute accent `
    &#123; Left curly brace {
    &#124; Vertical bar |
    &#125; Right curly brace }
    &#126; Tilde ~
  • 相关阅读:
    karto 资料
    底盘运动学
    QT中搜索文件列表
    Qt中引入boost库
    AGV调度理论链接
    qt开发杂记
    C++代码读取ping的网络延时
    结构体解析数据
    QJson 的简单使用
    Vue中问题总结 与未解决问题总结
  • 原文地址:https://www.cnblogs.com/kungfupanda/p/11917418.html
Copyright © 2011-2022 走看看