Roman Numeral One Hundred Thousand

Shortcodes

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

Unicode
U+2188
HTML Code
ↈ
HEX Code
ↈ
CSS Code
\2188
JS/JSON
\u2188
Unix/C/PHP/JAVA
0x2188
URL-encode
%E2%86%88

Customize Roman Numeral One Hundred Thousand

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

  

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

Insert in HTML

1. Direct symbol:
<span>ↈ</span>
HTML Code:
<span>&#8584;</span>
HEX Code:
<span>&#x2188;</span>

Add with CSS

.roman-numeral-one-hundred-thousand::before {
  content: '\\2188';
}

Set it in JavaScript

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