Hello
I have the following test-script in Python, encoded in UTF-8:
# encoding: utf-8
# Set the console codepage for this script to UTF-8
# Shouldn't be necessary through the 1st line: #encoding: utf-8
#os.system('chcp 65001')
print("jö, jä, jü")
print(u"jö, jä, jü")
After I open the...