I use byte codes and byte encode anything I want to manipulate. It's a pain but it works.
-----Original Message----- From: [email protected] [mailto:[email protected]] On Behalf Of Korcan Ergün Sent: Saturday, October 29, 2011 9:32 AM To: Google App Engine Subject: [google-appengine] Appengine converting unicode char to blank char in urllib.unquote I am sending encoded post data to appengine project.But appengine shows blank char in response. I am sending this form data : mdata=I%FD%FD%FE%DE%DE %E7%E7%C7%D6%F6%F6%D6%D6%0A%0A and my appengine response code is : request_data = self.request.get('mdata') mailhtmldata = urllib.unquote_plus(request_data) And repr(request_data) and repr(mailhtmldata) is u'I\n\n' .Still unicode chars like "İşÇöÖü" are blank.I am sure about my sender is sending mdata=I%FD%FD%FE%DE%DE%E7%E7%C7%D6%F6%F6%D6%D6%0A%0A.i tested.Where is other chars in appengine ? Thanks for all help. Sorry for my bad english -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.
