Property Description in a xojo_code file

I wrote an app to create xojo classes via .xojo_code files. It all works fine, except now I want to add a description to a few properties, and looking at property tag generated by xojo itself, it looks like the description is encoded:

#tag Property, Flags = &h0, Description = 504B206669656C64
ListID As String
#tag EndProperty

Before I start throwing it into a bunch of decoders, does anyone know what the encoding is? Hex possibly?

Thanks,
Cliff

Yes, it is the string hexEncoded (the result of EncodeHex)

Thank you!