Roman Numeral Five Thousand

Shortcodes

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

Unicode
U+2181
HTML Code
ↁ
HEX Code
ↁ
CSS Code
\2181
JS/JSON
\u2181
Unix/C/PHP/JAVA
0x2181
URL-encode
%E2%86%81

Customize Roman Numeral Five Thousand

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

  

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

Insert in HTML

1. Direct symbol:
<span>ↁ</span>
HTML Code:
<span>&#8577;</span>
HEX Code:
<span>&#x2181;</span>

Add with CSS

.roman-numeral-five-thousand::before {
  content: '\\2181';
}

Set it in JavaScript

document.querySelector('.roman-numeral-five-thousand').textContent = 'ↁ';
copied