I'm trying to decode chatacters which have been encoded in the following way:
&#number;
I tried:
s.decode("utf8")
and:
s.decode("unicode-escape")
but both not seems to work.
What is the encoding I should use to decode this kind?
In general - where can I find a list of all valid encodings?