UTF-8 special characters "ñ" from Transform Script

You have used non-ASCII characters in jython string constants that do not support them. Use unicode string constants instead, using the u"Mañana" syntax. That lower-cause u before the first quote tells jython to handle the unicode characters correctly.

https://docs.python.org/2.7/reference/lexical_analysis.html#strings

2 Likes