Hi, I tried to store Unicode characters into an array and retrieve them, but all I'm getting is "?"s instead of the Unicode characters I put in the code.
I typed the Unicode characters in MS-Word and past the values into my PHP code as seen below:
$tempArray = array('?','?','?','?','?','?','?','?');
As you can see the array converts the Unicode chars to "?". What should I do to store the actual Unicode chars? Btw, the Unicode chars I'm trying to store into the array are between U+1200 to U+1370F.
I appreciate in advance for any help you can give me. 🙂
Week