Double Prime

Shortcodes

Copy useful codes for double prime symbol ″ to use in websites, apps, blogs, and docs.

Unicode
U+2033
HTML Code
″
HTML Entity
″
HEX Code
″
CSS Code
\2033
JS/JSON
\u2033
Unix/C/PHP/JAVA
0x2033
URL-encode
%E2%80%B3

Customize Double Prime

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

  

How to use Double Prime Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>″</span>
HTML Code:
<span>&#8243;</span>
HTML Entity:
<span>&Prime;</span>
HEX Code:
<span>&#x2033;</span>

Add with CSS

.double-prime::before {
  content: '\\2033';
}

Set it in JavaScript

document.querySelector('.double-prime').textContent = '″';
copied