How about? Veran I have a little problem with some strings that are full of a unicode character.
My string is this:
$variable = "c\u0000o\u0000d\u0000e";
Which has this unicode character: \ u0000 I would like to know how I can remove all these "\ u0000" and leave my string like this:
$formateada = "code";
That is, without all those "junk" codes.