(Also read edit)
I'm working on an assignment that has to do with a game. My lecturer specifically said that only modules from the standard library are allowed, which means that third-party modules are not allowed.
I want to be able to print any unicode characters I want from the list of all possible unicode characters there are out there. Printing this:
print(" ⚫ ") #Medium Black Circle
print(" ") #some smiling cat i found on the internet
print(" ") # and a slice of pizza
it just outputs this on the Windows command prompt:
?
??
??
How do I accomplish this? :(
Edit:
As stated by user @Mofi , the Windows command prompt is a
non-graphic user interface
Therefore, emojis can't really be displayed in cmd.
Just to further clarify, I'm okay if the emojis can't be displayed on cmd but what about the "Medium Black Circle" which kinda looks like a text similar to "█" or "╝" and the likes.
And, if possible, where can I get a list of all characters similar to "█", "░" and "╝"?