Per Ten Thousand Sign

Shortcodes

Copy useful codes for per ten thousand sign ‱ to use in websites, apps, blogs, and docs.

Unicode
U+2031
HTML Code
‱
HEX Code
‱
CSS Code
\2031
JS/JSON
\u2031
Unix/C/PHP/JAVA
0x2031
URL-encode
%E2%80%B1

Customize Per Ten Thousand Sign

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

  

How to use Per Ten Thousand Sign in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>‱</span>
HTML Code:
<span>&#8241;</span>
HEX Code:
<span>&#x2031;</span>

Add with CSS

.per-ten-thousand-sign::before {
  content: '\\2031';
}

Set it in JavaScript

document.querySelector('.per-ten-thousand-sign').textContent = '‱';
copied