Triple Prime

Shortcodes

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

Unicode
U+2034
HTML Code
‴
HEX Code
‴
CSS Code
\2034
JS/JSON
\u2034
Unix/C/PHP/JAVA
0x2034
URL-encode
%E2%80%B4
copied

Customize Triple Prime Symbol

Customize ‴ symbol as you like and download Triple 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 Triple Prime symbol in HTML, CSS, and JS?

Insert ‴ Triple Prime using HTML

1. Copy-paste Triple Prime directly:
<span>‴</span>
2. HTML Decimal Code:
<span>&#8244;</span>
3. Hexadecimal Code:
<span>&#x2034;</span>
Preview:

Add Triple Prime symbol with CSS

.triple-prime::before {
    content: '\\2034';
}
Preview: Triple Prime

Triple Prime JavaScript Code

1. Direct Symbol:
document.querySelector('.triple-prime').textContent = '‴';
2. Unicode Escape for ‴:
document.querySelector('.triple-prime').textContent = '\u2034';
Preview: