Preview:
var replacements = new Dictionary<string, string>
{
    { "&euro;", "€" },
    { "&sect;", "§" },
    { "&nbsp;", " " },
    { "&gt;", ">" },
    { "&lt;", "<" },
    { "&amp;", "&" },
};


var messageWithReplacedValues = replacements.Aggregate(/* the string */, (current, replacement) => current.Replace(replacement.Key, replacement.Value));
downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter