Reversed Double Prime

Shortcodes

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

Unicode
U+2036
HTML Code
‶
HEX Code
‶
CSS Code
\2036
JS/JSON
\u2036
Unix/C/PHP/JAVA
0x2036
URL-encode
%E2%80%B6

Customize Reversed Double Prime

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

  

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

Insert in HTML

1. Direct symbol:
<span>‶</span>
HTML Code:
<span>&#8246;</span>
HEX Code:
<span>&#x2036;</span>

Add with CSS

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

Set it in JavaScript

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