Roman Numeral Ten Thousand

Shortcodes

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

Unicode
U+2182
HTML Code
ↂ
HEX Code
ↂ
CSS Code
\2182
JS/JSON
\u2182
Unix/C/PHP/JAVA
0x2182
URL-encode
%E2%86%82

Customize Roman Numeral Ten Thousand

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

  

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

Insert in HTML

1. Direct symbol:
<span>ↂ</span>
HTML Code:
<span>&#8578;</span>
HEX Code:
<span>&#x2182;</span>

Add with CSS

.roman-numeral-ten-thousand::before {
  content: '\\2182';
}

Set it in JavaScript

document.querySelector('.roman-numeral-ten-thousand').textContent = 'ↂ';
copied