Html Entities are a very good way at preventing xss and preserving meaning to users of the system. This is an excellent ratio of security and usability and this is why Html Entities is a very popular xss defensive measure. Currently for StackOverflow posts tags are stripped out, unless they are in a code block. This recently became rather upsetting when talking about HTML, and then realizing how often people talk about tags. (Like this post :) and this html that you can't see:
I know what I'm talking about when it comes to xss. I have many cve nubmers to my name, here an ironic xss vulneralbity in a Profense, which is a waf: CVE-2009-0468. Stripping tags does not make your system more secure against xss than using html entities. In fact xss is still possible even without greater than and less than symbols. For instance this code is vulnerable to xss because the user input is within an href.
print('<A HREF="http://www.xssed.com/'.striptags($_REQUEST[xss]).'">link</a>');
You don't need <> to execute javascript in this case because you can use onmouseover, here is an example attack:
http://127.0.0.1/test.php?xss=" onMouseOver="alert(/xss/)
In php you use this following code to prevent against xss. This is a common type of xss even in applications written by highly skilled software engineers.
patched:
print('<A HREF="http://www.xssed.com/'.htmlspeicalchars($_REQUEST['XSS'],ENT_QUTOES).'">link</a>');
More information on this attack: http://www.owasp.org/index.php/XSS_%28Cross_Site_Scripting%29_Prevention_Cheat_Sheet#RULE_.233_-_JavaScript_Escape_Before_Inserting_Untrusted_Data_into_HTML_JavaScript_Data_Values