\% escape code is not standard.
\%
Even some tools allow it, use %% instead to keep your code portable.
%%
string s = "Hello World\%";
string s = "Hello World%%";