I'm trying to use em dash (—) and multiplication symbol (×) in my Velocity template. But the output gives the following.
— for em dash
× for multiplication symbol
I have added <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
in the <head/>
as well.
I tried using the following as well.
#set( $multiplySymbol = '×' )
But it gives the same output.
How to use these kind of special characters on Velocity?