MATLAB: How to print a “%” when using fprintf

%displayfprintf

I need to have the display window have a "%" after the rest of my printing.
My code looks likes this:
fprintf('Percent Error: %0.8f %', percentError);
It is currently printing "Percent Error: 0.03696863 ", but I need it to print "Percent Error: 0.03696863%"

Best Answer

percentError = 0.03696863;
fprintf('Percent Error: %0.8f %%', percentError);