I have XSLT
<xsl:if test="progression = -1"><!--Insert character here-->/Down</xsl:if>
<xsl:if test="progression = 0"><!--Insert character here-->/No Change</xsl:if>
<xsl:if test="progression = 1"><!--Insert character here-->/Up</xsl:if>
I need to insert up, down and left right arrows in my xslt. The unicode are 2191, 2193, 2194 respectively.
How to I do it?