Ruble Sign

Shortcodes

Copy useful codes for ruble sign ₽ to use in websites, apps, blogs, and docs.

Unicode
U+20BD
HTML Code
₽
HEX Code
₽
CSS Code
\20BD
JS/JSON
\u20BD
Unix/C/PHP/JAVA
0x20BD
URL-encode
%E2%82%BD

Customize Ruble Sign

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

  

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

Insert in HTML

1. Direct symbol:
<span>₽</span>
HTML Code:
<span>&#8381;</span>
HEX Code:
<span>&#x20BD;</span>

Add with CSS

.ruble-sign::before {
  content: '\\20BD';
}

Set it in JavaScript

document.querySelector('.ruble-sign').textContent = '₽';
copied