Is there a function in PHP that can decode Unicode escape sequences like \"\\u00ed\" to \"í\" and all other similar occurrences?
\\u00ed
í
I found si
print_r(json_decode('{"t":"\u00ed"}')); // -> stdClass Object ( [t] => í )