Vulgar Fraction Three Eighths

Shortcodes

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

Unicode
U+215C
HTML Code
⅜
HEX Code
⅜
CSS Code
\215C
JS/JSON
\u215C
Unix/C/PHP/JAVA
0x215C
URL-encode
%E2%85%9C

Customize Vulgar Fraction Three Eighths

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

  

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

Insert in HTML

1. Direct symbol:
<span>⅜</span>
HTML Code:
<span>&#8540;</span>
HEX Code:
<span>&#x215C;</span>

Add with CSS

.vulgar-fraction-three-eighths::before {
  content: '\\215C';
}

Set it in JavaScript

document.querySelector('.vulgar-fraction-three-eighths').textContent = '⅜';
copied