How do I use Unicode with PHP?

I want to store Unicode value in a PHP variable but it output some question marks.

What is the solution?

link|improve this question

1  
It might be as simple as your browser not displaying the Unicode characters correctly because you have not set utf-8 as the encoding. – mfloryan Feb 9 '10 at 16:41
Unicode is just a standard (see en.wikipedia.org/wiki/Unicode). What exactly do you mean by Unicode? – Gumbo Feb 9 '10 at 16:41
9  
@Saiful: Accept some questions first. – KennyTM Feb 9 '10 at 16:42
4  
It is not required to accept answers before asking new questions. But if some of your answers had been satisfactorily answered, please accept the respective answer. – Gumbo Feb 9 '10 at 16:52
feedback

3 Answers

up vote 1 down vote accepted

This is something you're going to have to read up on to do correctly, but here are two links you should start with: Character Sets / Character Encoding Issues Handling UTF-8 with PHP

link|improve this answer
Thanks, those are very good links! The issue is much more complicated than just setting the header – Casebash Oct 10 '11 at 23:49
feedback

In php.ini:

default_charset = "UTF-8"
mbstring.internal_encoding = "UTF-8"

; overload(replace) single byte functions by mbstring functions.
; mail(), ereg(), etc are overloaded by mb_send_mail(), mb_ereg(),
; etc. Possible values are 0,1,2,4 or combination of them.
; For example, 7 for overload everything.
; 0: No overload
; 1: Overload mail() function
; 2: Overload str*() functions
; 4: Overload ereg*() functions
mbstring.func_overload = 4
link|improve this answer
feedback

make sure your output encoding is utf8

 header('Content-type: text/html; charset=utf-8');

PS accept some answers.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.