2
我不能這樣解碼JSON字符串: 「\ u0e4f \ u0361 \ u032f \ u0e4f」的Json在Python的simplejson的unicode解碼
>>> import simplejson
>>> simplejson.loads('"\u0e4f\u0361\u032f\u0e4f"', encoding='utf8')
u'\u0e4f\u0361\u032f\u0e4f'
但是PHP json_decode正常工作:
json_decode('"\u0e4f\u0361\u032f\u0e4f"');
什麼我做錯了嗎?