I want to display currencies using a really simple python script:
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys
import logging
if __name__ == '__main__':
print('€')
On my local computer, everything works fine when I run the script with powershell.
If I run the same script on my Windows Server 2008 however, the output is a question mark (?
).
I tried all solutions from this answer without success: https://stackoverflow.com/a/39936499/4437149.
Since im new to python I cant figure out whats exactly wrong.
Is there something missing in my script or any server misconfiguration? Im using the newest version of python (currently 3.8.0).