A sample code will explain how to eliminate the space between the rupee symbol and the rupee number in an advanced PDF print.
<#assign total = apply.total?string.currency/><#if record.currency="INR">
<td align="right" colspan="3">${total?replace("$","₹")}</td>
<#else>
<td align="right" colspan="3">${total}</td></#if>