I have this in source html that I want to parse
You can use the unescapeEntities(String,boolean) method of jsoup parser :
Document doc = Jsoup.parse(html); System.out.println(org.jsoup.parser.Parser.unescapeEntities(doc.body().html(), true));