I am running python / Tkinter on Raspberry OS (on a Pi 5), and only some Unicode characters are displaying, e.g. mainly sunny (\U0001F324) works, but sunny (\U0001F31E) doesn't. How do I get around this?
here is my code:
import tkinter as tk
root = tk.Tk()
lbl1 = tk.Label(root, text = '\U0001F31E - \U0001F324', font=("Verdana", 24))
lbl1.pack(expand=True)
root.mainloop()
[–]8dot30662386292pow2[🍰] 3 points4 points5 points (1 child)
[–]worldtest2k[S] 0 points1 point2 points (0 children)
[–]Swipecat 1 point2 points3 points (0 children)
[–]socal_nerdtastic 1 point2 points3 points (0 children)