Some online websites like to encode all their text through HTML entities, so instead of seeing a text like
So I'm looking
You get something like:
So I'm looking 
I was wondering if there's a built in way to translate the encoded text to regular text using any Emacs built-ins or if I should declare my map of strings ("&83" => "S"...) and manually decode it using a map.
Any pointers would be greatly appreciated.