Include % Sign within a string type variable through StringFormat() Function

 

How can I include % in StringFormat() function?

I was trying this instruction to display % sign after the stopOut value:

string msg = StringFormat("\nA/C Stop-Out: %g %",stopOut);

But, this instruction is not displaying any result.  

 
%%
 
Thanks :)
 
Vivs: How can I include % in StringFormat() function?
If you read the documentation, PrintFormat - MQL4 Documentation just above the flags section, it says:
If you need to output the percent sign in the format string, use the format specification %%.
Reason: