Character ﷼ can not be pasted in front of a number

This is an interesting question. The more general case is pasting a RTL character (right to left) in a LTR format.

In addition to the character you need a LTR unicode mark:

‎

See also: https://www.w3.org/TR/WCAG20-TECHS/H34.html


Probably related to the compilation direction. If you want to use it in HTML, I think following code can works for you

<bdo dir="ltr"> ﷼ 1</bdo>


in html tag better do like this :

<html lang="fa">

in meta tag use this :

<meta http-equiv="content-type" content="text/html; charset=utf-8" />

and in this case for example i used table and then RTL (right to left) in dir attribute :

<table dir="rtl" border="1" width="100%">
<tbody>
<tr>
<td bgcolor="#A2F0BE">قیمت</td>
</tr>
<tr>
<td>4,840,000 ﷼</td>
</tr>
</tbody>
</table>

and also check this out ,for example :

 HTML Entity (Decimal)  &#65020;

<p dir=rtl> 1000 &#65020;</p>

HTML Entity (Hexadecimal)   &#xFDFC;

<p dir="rtl">1000 &#xFDFC;</p>

Tags:

Html