Rial Sign

Shortcodes

Copy useful codes for rial sign ﷼ to use in websites, apps, blogs, and docs.

Unicode
U+FDFC
HTML Code
﷼
HEX Code
﷼
CSS Code
\FDFC
JS/JSON
\uFDFC
Unix/C/PHP/JAVA
0xFDFC
URL-encode
%EF%B7%BC

Customize Rial Sign

Customize ﷼, download it as SVG or PNG, or copy the generated HTML snippet.

  

How to use Rial Sign in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>﷼</span>
HTML Code:
<span>&#65020;</span>
HEX Code:
<span>&#xFDFC;</span>

Add with CSS

.rial-sign::before {
  content: '\\FDFC';
}

Set it in JavaScript

document.querySelector('.rial-sign').textContent = '﷼';
copied