What characters can I use in compiling xml tags?

  • one
    If it is possible (not necessary) a link to the documentation where one could read about it - J. Doe

1 answer 1

The list of allowed characters for XML tags is taken from here :

":" | [AZ] | "_" | [az] | [# xC0- # xD6] | [# xD8- # xF6] | [# xF8- # x2FF] | [# x370- # x37D] | [# x37F- # x1FFF] | [# x200C- # x200D] | [# x2070- # x218F] | [# x2C00- # x2FEF] | [# x3001- # xD7FF] | [# xF900- # xFDCF] | [# xFDF0- # xFFFD] | [# x10000- # xEFFFF]

This range includes, probably, all language characters, but, for example, the dash "-", which is number 45, is not in this list.

  • What you need! Thank you. - J. Doe