Small Roman Numeral One Hundred

Shortcodes

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

Unicode
U+217D
HTML Code
ⅽ
HEX Code
ⅽ
CSS Code
\217D
JS/JSON
\u217D
Unix/C/PHP/JAVA
0x217D
URL-encode
%E2%85%BD

Customize Small Roman Numeral One Hundred

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

  

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

Insert in HTML

1. Direct symbol:
<span>ⅽ</span>
HTML Code:
<span>&#8573;</span>
HEX Code:
<span>&#x217D;</span>

Add with CSS

.small-roman-numeral-one-hundred::before {
  content: '\\217D';
}

Set it in JavaScript

document.querySelector('.small-roman-numeral-one-hundred').textContent = 'ⅽ';
copied