Division Sign

÷

Shortcodes

Copy useful codes for division sign ÷ to use in websites, apps, blogs, and docs.

Unicode
U+00F7
Alt Code
247
HTML Code
÷
HTML Entity
÷
HEX Code
÷
CSS Code
\00F7
JS/JSON
\u00F7
Unix/C/PHP/JAVA
0xF7
URL-encode
%C3%B7

Customize Division Sign

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

÷
  

How to use Division Sign in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>÷</span>
HTML Code:
<span>&#247;</span>
HTML Entity:
<span>&divide;</span>
HEX Code:
<span>&#x00F7;</span>

Add with CSS

.division-sign::before {
  content: '\\00F7';
}

Set it in JavaScript

document.querySelector('.division-sign').textContent = '÷';
copied