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 that need 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, the following is the one you need:
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.
Fix for KEYWORD variant: Added the two characters Peter.O mentioned, and '(' and ')'.