Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Character ﷼ can not be pasted in front of a number

Tags:

html

I can't paste the character (Riyal currency) in front of a number:

1﷼

It's even impossible to paste it between 2 numbers, it's pasted at the end:

11﷼

There aren't any problems if you try to paste it in front of a letter:

﷼a

Does anybody know what happens and how I can do it?

like image 987
joseantgv Avatar asked Feb 06 '20 16:02

joseantgv


2 Answers

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

like image 184
geco17 Avatar answered Sep 27 '22 20:09

geco17


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>
like image 41
AbdurrahmanY Avatar answered Sep 27 '22 20:09

AbdurrahmanY