I would like to have pretty URLs for my tagging system along with all the special characters: +, &, #, %, and =
+
&
#
%
=
I finally made it work with the help of RewriteMap.
Added the escape map in httpd.conf file RewriteMap es int:escape
and used it in Rewrite rule
RewriteRule ([^?.]*) /abc?arg1=${es:$1}&country_sniff=true [L]