Hello everyone.
I'm trying to put theta symbol in my plugin, but I can't. The unicode is u'\\u03B8', and the string if I did well is '\\xc3\\xb8'. I have a text field with code below. However, a diferent symbols appears. Does anyone know how I could insert theta symbol? in python 3.x, the string '\\xc3\\b8' write well the symbol. I was googling and it's related to encoding, but I did not reach the solution, even by putting at the head of my module:
#!/usr/bin/python
# -*- coding: utf-8 -*-
AFXTextField(p=VAligner_Wiper, ncols=10,
labelText='Tilting (\\xc3\\xb8):', tgt=form.tetaWKw, sel=0,
opts=LAYOUT_FILL_X)
Thank you in advance.
