Per Mille Sign

Shortcodes

Copy useful codes for per mille sign ‰ to use in websites, apps, blogs, and docs.

Unicode
U+2030
Alt Code
0137
HTML Code
‰
HTML Entity
‰
HEX Code
‰
CSS Code
\2030
JS/JSON
\u2030
Unix/C/PHP/JAVA
0x2030
URL-encode
%E2%80%B0

Customize Per Mille Sign

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

  

How to use Per Mille Sign in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>‰</span>
HTML Code:
<span>&#8240;</span>
HTML Entity:
<span>&permil;</span>
HEX Code:
<span>&#x2030;</span>

Add with CSS

.per-mille-sign::before {
  content: '\\2030';
}

Set it in JavaScript

document.querySelector('.per-mille-sign').textContent = '‰';
copied