About Combining Characters
In Unicode, characters with diacritical symbols sometimes might be stored as an ASCII letter and a diacritical symbol, for example: Aฬ stored as Aยจ.
To make sure that all your data is stored consistently for filtering, search, and character length checks, normalize the Unicode strings before saving them to the database:
import unicodedata
text = unicodedata.normalize("NFC", text)
Also by me
Django Messaging ๐ ๐ผ
For Django-based social platforms.
Django App for You
Django Paddle Subscriptions ๐ ๐ผ
For Django-based SaaS projects.
Django App for You
Django GDPR Cookie Consent ๐ ๐ผ
For Django websites that use cookies.
Django App for You