How to print the "&" character in xslt?

I am working with XSLT 1.0, and I would like to print "&" (ampersand), since this is a special character in xslt, it gives an error. Therefore, please suggest an option. Because we use the &lt;print "<" character.

+3
source share
2 answers

use encoded version and character

&amp;
+3
source

&amp;or ($amp;if it $lt;works).

+1
source

All Articles