Vulgar Fraction Five Eighths

Shortcodes

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

Unicode
U+215D
HTML Code
⅝
HEX Code
⅝
CSS Code
\215D
JS/JSON
\u215D
Unix/C/PHP/JAVA
0x215D
URL-encode
%E2%85%9D

Customize Vulgar Fraction Five Eighths

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

  

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

Insert in HTML

1. Direct symbol:
<span>⅝</span>
HTML Code:
<span>&#8541;</span>
HEX Code:
<span>&#x215D;</span>

Add with CSS

.vulgar-fraction-five-eighths::before {
  content: '\\215D';
}

Set it in JavaScript

document.querySelector('.vulgar-fraction-five-eighths').textContent = '⅝';
copied