An XML name cannot start with a digit, so some other representation must be used that can be understood to mean '6'.
The tool has chosen to write the hexadecimal representation of the character instead, surrounded by underscores. The code \x0036
is the hexadecimal code for the character '6', which is 54 in decimal. Underscores are valid characters at the start of an XML name so this works.
This same technique could be used to escape other characters which are invalid in XML names. This technique is used for example by Microsoft's XmlConvert, as described here, but I'm sure there are other tools which use the same technique too.