Problem unicode character with JSON API feeback

I have an issue using some API or Http Callback with Ignition.

When acceding to JSON Data either as a reply of an http get using an API or with an Http post retrieved by a webdev python script, Ignition add some “u” characters that induce issue to decode this as a JSON.

How to remove this characters ?

Thank you very much for your help

You’re probably meaning the u prefixes that define unicode strings (see https://docs.python.org/2/howto/unicode.html#unicode-literals-in-python-source-code )

Those shouldn’t cause any issues, as they’re just in the representation, and not in the string. Can you show us where you’re getting those, and where it fails with your code?