I\'m looking at the output of a tool, dumping a database table to XML. One of the columns is named 64kbit , the tool encodes that as such, and I need to rep
That encoding isn't default to XML, but seems required by your tool, since elements must start with a small character set.
That _x0036_ sequence represents haxadecimal number 36 (decimal 54), which represents your 6 character in ASCII table.
_x0036_
6