Tamil Rupee Sign

Shortcodes

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

Unicode
U+0BF9
HTML Code
௹
HEX Code
௹
CSS Code
\0BF9
JS/JSON
\u0BF9
Unix/C/PHP/JAVA
0xBF9
URL-encode
%E0%AF%B9

Customize Tamil Rupee Sign

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

  

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

Insert in HTML

1. Direct symbol:
<span>௹</span>
HTML Code:
<span>&#3065;</span>
HEX Code:
<span>&#x0BF9;</span>

Add with CSS

.tamil-rupee-sign::before {
  content: '\\0BF9';
}

Set it in JavaScript

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