Is there a function in PHP that can decode Unicode escape sequences like \"\\u00ed\" to \"í\" and all other similar occurrences?
\\u00ed
í
I found si
As of PHP 7, you can use the Unicode codepoint escape syntax to do this.
echo "\u{00ed}"; outputs í.
echo "\u{00ed}";