Hello, I'm having following data in php variable string i'm trying to echo : \u09ab\u09be\u0989\u099c \u0986\u09b9\u09ae\u09c7\u09a6 \u099a\u09cc\u09a7\u09c1\u09b0\u09c0 Code (markup): OR \u674e\u5b5f\u9f8d Code (markup): OR \u0645\u0648\u0644\u0627\u0646\u0627 Code (markup): Above is multilingual data.. may i please know how do i get unicode for above encodings? I tried mb_detect_encoding() and it keeps telling me the encoding is ASCII but i dont know how to get unicode for that.. if that is ASCII then i also tried to convert it utf8 first and then obtaining unicodes for utf8 but none worked. P.S. utf8 to unicode conversion function written by me works perfect. Please help
utf8_decode() aint working.. @kmap, its not bangla or roman.. those r some standard codes generated by facebook to display names in different languages in different character sets.. facebook connect library generates standard utf8 codes for usernames... the one i'm using here, gives me \u----- kind of codes for each character. i have no idea what encoding it is.. so please someone tell me how do i get unicode or atleast standard utf8 codes for following : \u09ab\u09be\u0989\u099c \u0986\u09b9\u09ae\u09c7\u09a6 \u099a\u09cc\u09a7\u09c1\u09b0\u09c0 Code (markup):
no no.. it is coming from facebook thing i'm working on.. its all curl and stuff... i just wanna know how do i convert that stuff to actual readable text.