I need to HTML encode some text which may or may not already be HTML encoded (perhaps only partially). Is the following safe? Are there any characters/encodings that could cause unexpected behaviour?
HttpUtility.HtmlEncode(HttpUtility.HtmlDecode(text))
Thanks
Your logic "HttpUtility.HtmlEncode(HttpUtility.HtmlDecode(text))
" is safe. There is a standard for HTML characters encoding. Take a look.