Sorry for downvoting PEZ's accepted answer, but escaping everything is a bad idea. Sed needs many characters to be escaped to get their special meaning. For example, if you escape a digit in the replacement string, it will turn in to a backreference.
As Ben Blank said, there are only three characters than needs to be escaped in the replacement string (escapes themselves, forward slash for end of statement and & for replace all):
sed -e 's/[\/&]/\\&/g'
If you ever need to escape the KEYWORD string, this is the one you need (I hope I remembered all of them):
sed -e 's/\([[\/.*]\|\]\)/\\&/g'
Addendum: Remember, if you use a character other than / as delimiter, you need replace the slash in the expressions above wih the character you are using. See PeterJCLaw's comment for explanation.