This is the answer:
\u003c html\u003e \u003c body\u003e Esta búsqueda ya se ha completado . \u003c / body\u003e \u003c / html\u003e
And it should be:
<html><body>Esta búsqueda ya se ha completado.</body></html>
The script that I have used:
public String reemplazarCaracteres(String texto)
{
UTF8Encoding utf8 = new UTF8Encoding();
Byte[] encodedBytes = utf8.GetBytes(texto);
String decodedString = utf8.GetString(encodedBytes);
return decodedString;
}
Thank you.