Python plays with unicode nicely nowadays. Bt what if you must deal with old time formats conversion, or ASCII files exporting for e.g. You may also use software that is out of date but is too long to rewrite... Here often errors occur. I have received mine at copy-pasting from MS Word into Django admin UI by stupid users. Most of the website played nicely with this fancy characters, but exporting to CSV failed due to non ASCII characters support. Google said nothing special. Python docs about unicode usage briefly cover this type of events. So here is the result of some hours of experiments. I've decided to rewrite some of the python functionality to create decode function with behavior for my needs. Hopefully they will shorten you some time with those collisions you may get in your Django apps... Anyway I've started to receive errors like: Exception Type: UnicodeEncodeError Exception Value: 'asc...
My thoughts/recipes on Django, Python, JS and other things I try...