Hi Preetha
Thank you for reporting!
I have just tried myself, and this works for me:
```parselmouth.praat.run_file("/home/yannick/plugin_VocalToolkit/createvowel.praat", 0.8, 150, 100, 500, 1500, 2500, 3500, True, 'Man', 'ɪ\tih\t"hid"', 'VowelEditor (4 formants)', False)[0].save("TEST.wav", 'WAV')```
But since this "ɪ" is not Latin script but Unicode, I guess that's where the issue is. There are a few things to check out:
1. You're using Python 3 right? Python 2 makes a bit of a mess of Unicode handling (and is dead, anyway).
2. Check the encoding in which you're saving the Python script file. Try to make sure it's saved as UTF-8, since that's Python's default
4. Probably the easiest workaround (but not solving the issue at its core): just enter the \uxxxx code of the IPA symbol. In this case: `'\u026A\tih\t"hid"'`. (see https://www.compart.com/en/unicode/U+026A)
If these suggestions do not work, please get back to me with a few more details (i.e., running on Windows? Which Python version? Which Windows language settings?) and I'll look further into this!
It's quite messy to enter these strings, I agree. But then again, there's something amazing about it actually working in Python, as well? :-)
Kind regards
Yannick