Rupee Sign

Shortcodes

Copy useful codes for rupee sign ₨ to use in websites, apps, blogs, and docs.

Unicode
U+20A8
HTML Code
₨
HEX Code
₨
CSS Code
\20A8
JS/JSON
\u20A8
Unix/C/PHP/JAVA
0x20A8
URL-encode
%E2%82%A8

Customize Rupee Sign

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

  

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

Insert in HTML

1. Direct symbol:
<span>₨</span>
HTML Code:
<span>&#8360;</span>
HEX Code:
<span>&#x20A8;</span>

Add with CSS

.rupee-sign::before {
  content: '\\20A8';
}

Set it in JavaScript

document.querySelector('.rupee-sign').textContent = '₨';
copied