How do i add a % sign to the text in a print job without it being seen as a variable?

I need to add the PJL escape code (%-12345X) at the end of a print job and when it gets added it looks like this, -12345X. The % sign gets dropped, so the escape command doesn’t work.

Try doubling the percent character or prepending a backslash () character to mark it as a litteral character that shouldn’t be escaped.

Thanks, I will try that this afternoon!

The double percent sign worked perfectly! Thank you much!!