Partial Differential

Shortcodes

Copy useful codes for partial differential symbol ∂ to use in websites, apps, blogs, and docs.

Unicode
U+2202
HTML Code
∂
HEX Code
∂
CSS Code
\2202
JS/JSON
\u2202
Unix/C/PHP/JAVA
0x2202
URL-encode
%E2%88%82

Customize Partial Differential

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

  

How to use Partial Differential Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>∂</span>
HTML Code:
<span>&#8706;</span>
HEX Code:
<span>&#x2202;</span>

Add with CSS

.partial-differential::before {
  content: '\\2202';
}

Set it in JavaScript

document.querySelector('.partial-differential').textContent = '∂';
copied