Because

Shortcodes

Copy and paste codes for Because symbol ∵ to use in your websites, apps, blogs, and more.

Unicode
U+2235
HTML Code
∵
HEX Code
∵
CSS Code
\2235
JS/JSON
\u2235
Unix/C/PHP/JAVA
0x2235
URL-encode
%E2%88%B5
copied

Customize Because Symbol

Customize ∵ symbol as you like and download Because 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 Because symbol in HTML, CSS, and JS?

Insert ∵ Because using HTML

1. Copy-paste Because directly:
<span>∵</span>
2. HTML Decimal Code:
<span>&#8757;</span>
3. Hexadecimal Code:
<span>&#x2235;</span>
Preview:

Add Because symbol with CSS

.because::before {
    content: '\\2235';
}
Preview: Because

Because JavaScript Code

1. Direct Symbol:
document.querySelector('.because').textContent = '∵';
2. Unicode Escape for ∵:
document.querySelector('.because').textContent = '\u2235';
Preview: