Small Roman Numeral One Thousand

Shortcodes

Copy useful codes for small roman numeral one thousand symbol ⅿ to use in websites, apps, blogs, and docs.

Unicode
U+217F
HTML Code
ⅿ
HEX Code
ⅿ
CSS Code
\217F
JS/JSON
\u217F
Unix/C/PHP/JAVA
0x217F
URL-encode
%E2%85%BF

Customize Small Roman Numeral One Thousand

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

  

How to use Small Roman Numeral One Thousand Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>ⅿ</span>
HTML Code:
<span>&#8575;</span>
HEX Code:
<span>&#x217F;</span>

Add with CSS

.small-roman-numeral-one-thousand::before {
  content: '\\217F';
}

Set it in JavaScript

document.querySelector('.small-roman-numeral-one-thousand').textContent = 'ⅿ';
copied