Hello.
What should I do if it's not a language supported by Ignition in a situation where I get information using a script from the perspective of Ignition?
What language? What is the problem you are experiencing? Is it a text display issue?
It's still not clear to me what this means, but in my experience working with special characters from various languages, the characters often have to be cast to unicode to get them to work correctly. This is due to the antiquated way python 2 handles strings. Try putting the information you want into a unicode() cast to see if that corrects the issue.
Example:
unicode(tagrow["tagDescription"])
Thank you for the information. Thanks to you, it was solved.
