How can I use unicode strings in tornado views or templates?
I insert in template
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
And in view
# -- coding: utf-8 --Output is ????
|
Once you have your unicode string ready, the request should end
This renders the file "template.html" setting the aString variable to aUnicodeString. template.html would look something like this:
It's also possible to inline the HTML in the Tornado server.
More on templates here: |
|||
|
|
print u"unicode string".encode("utf-8")– vartec Apr 13 '11 at 10:28