Nordic Mark Sign

Shortcodes

Copy useful codes for nordic mark sign ₻ to use in websites, apps, blogs, and docs.

Unicode
U+20BB
HTML Code
₻
HEX Code
₻
CSS Code
\20BB
JS/JSON
\u20BB
Unix/C/PHP/JAVA
0x20BB
URL-encode
%E2%82%BB

Customize Nordic Mark Sign

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

  

How to use Nordic Mark Sign in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>₻</span>
HTML Code:
<span>&#8379;</span>
HEX Code:
<span>&#x20BB;</span>

Add with CSS

.nordic-mark-sign::before {
  content: '\\20BB';
}

Set it in JavaScript

document.querySelector('.nordic-mark-sign').textContent = '₻';
copied