Vulgar Fraction Three Eighths

Shortcodes

Copy and paste codes for Vulgar Fraction Three Eighths symbol ⅜ to use in your websites, apps, blogs, and more.

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

Customize Vulgar Fraction Three Eighths Symbol

Customize ⅜ symbol as you like and download Vulgar Fraction Three Eighths 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 Three Eighths symbol in HTML, CSS, and JS?

Insert ⅜ Vulgar Fraction Three Eighths using HTML

1. Copy-paste Vulgar Fraction Three Eighths directly:
<span>⅜</span>
2. HTML Decimal Code:
<span>&#8540;</span>
3. Hexadecimal Code:
<span>&#x215C;</span>
Preview:

Add Vulgar Fraction Three Eighths symbol with CSS

.vulgar-fraction-three-eighths::before {
    content: '\\215C';
}
Preview: Vulgar Fraction Three Eighths

Vulgar Fraction Three Eighths JavaScript Code

1. Direct Symbol:
document.querySelector('.vulgar-fraction-three-eighths').textContent = '⅜';
2. Unicode Escape for ⅜:
document.querySelector('.vulgar-fraction-three-eighths').textContent = '\u215C';
Preview: