Vulgar Fraction Two Thirds

Shortcodes

Copy useful codes for vulgar fraction two thirds symbol ⅔ to use in websites, apps, blogs, and docs.

Unicode
U+2154
HTML Code
⅔
HEX Code
⅔
CSS Code
\2154
JS/JSON
\u2154
Unix/C/PHP/JAVA
0x2154
URL-encode
%E2%85%94

Customize Vulgar Fraction Two Thirds

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

  

How to use Vulgar Fraction Two Thirds Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⅔</span>
HTML Code:
<span>&#8532;</span>
HEX Code:
<span>&#x2154;</span>

Add with CSS

.vulgar-fraction-two-thirds::before {
  content: '\\2154';
}

Set it in JavaScript

document.querySelector('.vulgar-fraction-two-thirds').textContent = '⅔';
copied