Double Prime

Shortcodes

Copy and paste codes for Double Prime symbol ″ to use in your websites, apps, blogs, and more.

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
copied

Customize Double Prime Symbol

Customize ″ symbol as you like and download Double Prime as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.

                        
                    

How to add Double Prime symbol in HTML, CSS, and JS?

Insert ″ Double Prime using HTML

1. Copy-paste Double Prime directly:
<span>″</span>
2. HTML Decimal Code:
<span>&#8243;</span>
3. HTML Entity:
<span>&Prime;</span>
4. Hexadecimal Code:
<span>&#x2033;</span>
Preview:

Add Double Prime symbol with CSS

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

Double Prime JavaScript Code

1. Direct Symbol:
document.querySelector('.double-prime').textContent = '″';
2. Unicode Escape for ″:
document.querySelector('.double-prime').textContent = '\u2033';
Preview: