Vulgar Fraction One Eighth

Shortcodes

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

Unicode
U+215B
HTML Code
⅛
HEX Code
⅛
CSS Code
\215B
JS/JSON
\u215B
Unix/C/PHP/JAVA
0x215B
URL-encode
%E2%85%9B

Customize Vulgar Fraction One Eighth

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

  

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

Insert in HTML

1. Direct symbol:
<span>⅛</span>
HTML Code:
<span>&#8539;</span>
HEX Code:
<span>&#x215B;</span>

Add with CSS

.vulgar-fraction-one-eighth::before {
  content: '\\215B';
}

Set it in JavaScript

document.querySelector('.vulgar-fraction-one-eighth').textContent = '⅛';
copied