Therefore

Shortcodes

Copy useful codes for therefore symbol ∴ to use in websites, apps, blogs, and docs.

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

Customize Therefore

Customize ∴, download it as SVG or PNG, or copy the generated HTML snippet.

  

How to use Therefore Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>∴</span>
HTML Code:
<span>&#8756;</span>
HEX Code:
<span>&#x2234;</span>

Add with CSS

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

Set it in JavaScript

document.querySelector('.therefore').textContent = '∴';
copied