Vulgar Fraction One Ninth

Shortcodes

Copy useful codes for vulgar fraction one ninth symbol ⅑ to use in websites, apps, blogs, and docs.

Unicode
U+2151
HTML Code
⅑
HEX Code
⅑
CSS Code
\2151
JS/JSON
\u2151
Unix/C/PHP/JAVA
0x2151
URL-encode
%E2%85%91

Customize Vulgar Fraction One Ninth

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

  

How to use Vulgar Fraction One Ninth Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⅑</span>
HTML Code:
<span>&#8529;</span>
HEX Code:
<span>&#x2151;</span>

Add with CSS

.vulgar-fraction-one-ninth::before {
  content: '\\2151';
}

Set it in JavaScript

document.querySelector('.vulgar-fraction-one-ninth').textContent = '⅑';
copied