I am trying to print ascii playing cards for a poker game but it's not working as planned.
I tried printing playing cards using unicode for my poker program in python but when I use the unicode the console comes up with this error: "SyntaxError: (unicode error) 'unicodeescape' codec can't decode bytes in position 0-1: truncated \uXXXX escape" and when I copy and paste the ascii from the website (which I'd prefer not to do) it only prints cards with a question mark on them
here is my code:
backOfCard = '\u+1f0a0'
print(backOfCard)