Hi, I don't know what framework are your using.

Generally speaking, you should set "Content-Type:text/html; charset=UTF-8"
header, and make sure you output UTF-8 encoded sting.

If you are using webapp, it will look like this:

self.response.headers['Content-Type'] = 'Content-Type:text/html;
charset=UTF-8'
self.response.out.write(u'something in Arabic'.encode('utf-8'))

----------
keakon

My blog(Chinese): www.keakon.net
Blog source code: https://bitbucket.org/keakon/doodle/

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.

Reply via email to