0

I have a page with an amount and a currency symbol (unicode characters). I need the symbol to always be to the left of the amount. I've tried many things and no matter what the symbol appears on the right. Any ideas?

<span dir="ltr">&#x62f;&#x2e;&#x625;12.11</span>

Please don't answer something like "if the currency symbol is in Arabic it should be right to left". This is the business requirement I was handed and is non-negotiable.

George
  • 1,021
  • 15
  • 32

1 Answers1

0

well how about this?

<span dir="ltr">&#x62f;&#x2e;&#x625; <span dir="ltr">12.11</span></span>

Motassem Kassab
  • 1,744
  • 4
  • 21
  • 40