I am trying to call Python\'s time.strftime() function using a Unicode format string:
time.strftime()
u\'%d\\u200f/%m\\u200f/%Y %H:%M:%S\'
(\\
You can format string through utf-8 encoding:
time.strftime(u'%d\u200f/%m\u200f/%Y %H:%M:%S'.encode('utf-8'), t).decode('utf-8')