[Answer]-How to change encoding while doing queries in Django

1👍

Django works with unicode. Try Currency.objects.filter(name=u"сум")

0👍

try put this line at the top of your source code:

# -*- coding: utf-8 -*- 
👤Sean

Leave a comment