Ajeh's suggestion is perfectly valid.
A double-percent-sign would also work, ie: %%

(If you want to understand the technical stuff behind it, this is because the PHP sprintf() function that's used there is using the % symbol as an instruction argument. The double %% tells it you want to actually use a common % sign ... ref: http://www.php.net/manual/en/function.sprintf.php )