Therefore

Shortcodes

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

Unicode
U+2234
HTML Code
∴
HEX Code
∴
CSS Code
\2234
JS/JSON
\u2234
Unix/C/PHP/JAVA
0x2234
URL-encode
%E2%88%B4
copied

Customize Therefore Symbol

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

Insert ∴ Therefore using HTML

1. Copy-paste Therefore directly:
<span>∴</span>
2. HTML Decimal Code:
<span>&#8756;</span>
3. Hexadecimal Code:
<span>&#x2234;</span>
Preview:

Add Therefore symbol with CSS

.therefore::before {
    content: '\\2234';
}
Preview: Therefore

Therefore JavaScript Code

1. Direct Symbol:
document.querySelector('.therefore').textContent = '∴';
2. Unicode Escape for ∴:
document.querySelector('.therefore').textContent = '\u2234';
Preview: