Vulgar Fraction Two Thirds

Shortcodes

Copy and paste codes for Vulgar Fraction Two Thirds symbol ⅔ to use in your websites, apps, blogs, and more.

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

Customize Vulgar Fraction Two Thirds Symbol

Customize ⅔ symbol as you like and download Vulgar Fraction Two Thirds as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.

                        
                    

How to add Vulgar Fraction Two Thirds symbol in HTML, CSS, and JS?

Insert ⅔ Vulgar Fraction Two Thirds using HTML

1. Copy-paste Vulgar Fraction Two Thirds directly:
<span>⅔</span>
2. HTML Decimal Code:
<span>&#8532;</span>
3. Hexadecimal Code:
<span>&#x2154;</span>
Preview:

Add Vulgar Fraction Two Thirds symbol with CSS

.vulgar-fraction-two-thirds::before {
    content: '\\2154';
}
Preview: Vulgar Fraction Two Thirds

Vulgar Fraction Two Thirds JavaScript Code

1. Direct Symbol:
document.querySelector('.vulgar-fraction-two-thirds').textContent = '⅔';
2. Unicode Escape for ⅔:
document.querySelector('.vulgar-fraction-two-thirds').textContent = '\u2154';
Preview: