Does Not Divide

Shortcodes

Copy useful codes for does not divide symbol ∤ to use in websites, apps, blogs, and docs.

Unicode
U+2224
HTML Code
∤
HEX Code
∤
CSS Code
\2224
JS/JSON
\u2224
Unix/C/PHP/JAVA
0x2224
URL-encode
%E2%88%A4

Customize Does Not Divide

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

  

How to use Does Not Divide Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>∤</span>
HTML Code:
<span>&#8740;</span>
HEX Code:
<span>&#x2224;</span>

Add with CSS

.does-not-divide::before {
  content: '\\2224';
}

Set it in JavaScript

document.querySelector('.does-not-divide').textContent = '∤';
copied