I am doing a small project on Google AppEngine, but I have problems with international characters. My program takes data from the user through the url "page.html? Data1 & data2 ..." and saves it for display later.
But when the user uses some international characters, such as Γ₯Àâ, it is encoded as% F4,% F5 and% F6. I assume this is due to the fact that only the first 128 (?) Characters in the ASCII table are allowed in http requests.
Does anyone have a good solution for this? Any easy way to decode text? And is it better to decode it before I save the data, or should I decode it when displayed to the user.
source share