About Unicode Characters
You can write Unicode symbols in Python strings by their names, for example:
>>> print("Start \N{HEAVY WIDE-HEADED RIGHTWARDS ARROW} End")
Start ➔ End
You can get the name of a Unicode character using the unicodedata
module:
>>> import unicodedata
>>> unicodedata.name("😎")
'SMILING FACE WITH SUNGLASSES'
Also by me
Django Paddle Subscriptions app
For Django-based SaaS projects.
Django App for You
Django GDPR Cookie Consent app
For Django websites that use cookies.
Django App for You