fb.HtmlCoder
A dinky little C++ HTML decoder
Just a small HTML decoder
I use for decoding / unescaping html entities in my own C++ stuff.
It's on GitHub.
fb::HtmlCoder html_decoder;
const std::string encoded_html = "Tom & Jerry";
const auto decoded_html = html_decoder.decode(encoded_html);
std::cout << decoded_html << std::endl;