I have the following text:
We%27re%20proud%20to%20introduce%20the%20Amazing
I\'d like to remove the encoding using PHP, but using html_en
html_en
%27 and %20 are URL encoded entities.
You'll want to use use urldecode() to decode this. urlencode() exists as well for encoding URL parameters.