我有 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>
我需要在我的 xslt 中插入向上、向下和向左向右箭头。unicode 分别为 2191、2193、2194。
我该怎么做?