Roman Numeral Fifty Thousand

Shortcodes

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

Unicode
U+2187
HTML Code
ↇ
HEX Code
ↇ
CSS Code
\2187
JS/JSON
\u2187
Unix/C/PHP/JAVA
0x2187
URL-encode
%E2%86%87

Customize Roman Numeral Fifty Thousand

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

  

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

Insert in HTML

1. Direct symbol:
<span>ↇ</span>
HTML Code:
<span>&#8583;</span>
HEX Code:
<span>&#x2187;</span>

Add with CSS

.roman-numeral-fifty-thousand::before {
  content: '\\2187';
}

Set it in JavaScript

document.querySelector('.roman-numeral-fifty-thousand').textContent = 'ↇ';
copied