Roman Numeral One Thousand

Shortcodes

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

Unicode
U+216F
HTML Code
Ⅿ
HEX Code
Ⅿ
CSS Code
\216F
JS/JSON
\u216F
Unix/C/PHP/JAVA
0x216F
URL-encode
%E2%85%AF

Customize Roman Numeral One Thousand

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

  

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

Insert in HTML

1. Direct symbol:
<span>Ⅿ</span>
HTML Code:
<span>&#8559;</span>
HEX Code:
<span>&#x216F;</span>

Add with CSS

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

Set it in JavaScript

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