In my Flex Application I am receiving Unicode result from back end ( web service) an displaying it in Flex Label component
Eg. Response string = [\u8868\u7af9\uff5eFulfillment~~~~ja]
I am binding response to label component
When I am displaying it in label its not showing me Japanese character .
Storing this information in properties file works Eg. Result.properties Res=[\u8868\u7af9\uff5eFulfillment~~~~ja]
In side flex component
- define a metadata tag for Result.properties file
- call it in Label component as resourceManager.getString(‘Result’,,’Res’)
This show the japaness data in UI
Please provide me with suitable guidance