I have text in this format les validations d'entr\u00e9es
instead of les validations d'entrées
.
This is from Twitter .json API and I would like to translate the \u00e9
to the é
but can't find a way to do it.
I suppose it's unicode so how can I translate those characters in PHP?
Sample of code that I already have:
$this->jsonArray = json_decode($this->jsonData, true);
//... Loop ...
$output .=' <li class="twit">'.$this->jsonArray[$x]['text'] //....