I have dictionary of dictionary which has utf8 encoded keys. I am dumping this dictionary to a file using json
module.
In the file keys are printed in utf8 format. Keys are actually letters of Bengali language.
I want actual letters to get written in the file. How to do this ??
If I print those keys(one of them is u'\u0982') to console actual letter(ং) is shown but in my file \u0982
.is written. What does print do to show the actual letter?