Vulgar Fraction One Third

Shortcodes

Copy and paste codes for Vulgar Fraction One Third symbol ⅓ to use in your websites, apps, blogs, and more.

Unicode
U+2153
HTML Code
⅓
HEX Code
⅓
CSS Code
\2153
JS/JSON
\u2153
Unix/C/PHP/JAVA
0x2153
URL-encode
%E2%85%93
copied

Customize Vulgar Fraction One Third Symbol

Customize ⅓ symbol as you like and download Vulgar Fraction One Third 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 One Third symbol in HTML, CSS, and JS?

Insert ⅓ Vulgar Fraction One Third using HTML

1. Copy-paste Vulgar Fraction One Third directly:
<span>⅓</span>
2. HTML Decimal Code:
<span>&#8531;</span>
3. Hexadecimal Code:
<span>&#x2153;</span>
Preview:

Add Vulgar Fraction One Third symbol with CSS

.vulgar-fraction-one-third::before {
    content: '\\2153';
}
Preview: Vulgar Fraction One Third

Vulgar Fraction One Third JavaScript Code

1. Direct Symbol:
document.querySelector('.vulgar-fraction-one-third').textContent = '⅓';
2. Unicode Escape for ⅓:
document.querySelector('.vulgar-fraction-one-third').textContent = '\u2153';
Preview: