Vulgar Fraction Seven Eighths

Shortcodes

Copy useful codes for vulgar fraction seven eighths symbol ⅞ to use in websites, apps, blogs, and docs.

Unicode
U+215E
HTML Code
⅞
HEX Code
⅞
CSS Code
\215E
JS/JSON
\u215E
Unix/C/PHP/JAVA
0x215E
URL-encode
%E2%85%9E

Customize Vulgar Fraction Seven Eighths

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

  

How to use Vulgar Fraction Seven Eighths Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⅞</span>
HTML Code:
<span>&#8542;</span>
HEX Code:
<span>&#x215E;</span>

Add with CSS

.vulgar-fraction-seven-eighths::before {
  content: '\\215E';
}

Set it in JavaScript

document.querySelector('.vulgar-fraction-seven-eighths').textContent = '⅞';
copied