Division Slash

Shortcodes

Copy useful codes for division slash symbol ∕ to use in websites, apps, blogs, and docs.

Unicode
U+2215
HTML Code
∕
HEX Code
∕
CSS Code
\2215
JS/JSON
\u2215
Unix/C/PHP/JAVA
0x2215
URL-encode
%E2%88%95

Customize Division Slash

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

  

How to use Division Slash Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>∕</span>
HTML Code:
<span>&#8725;</span>
HEX Code:
<span>&#x2215;</span>

Add with CSS

.division-slash::before {
  content: '\\2215';
}

Set it in JavaScript

document.querySelector('.division-slash').textContent = '∕';
copied