Raised Interpolation Marker

Shortcodes

Copy useful codes for raised interpolation marker symbol ⸆ to use in websites, apps, blogs, and docs.

Unicode
U+2E06
HTML Code
⸆
HEX Code
⸆
CSS Code
\2E06
JS/JSON
\u2E06
Unix/C/PHP/JAVA
0x2E06
URL-encode
%E2%B8%86

Customize Raised Interpolation Marker

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

  

How to use Raised Interpolation Marker Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⸆</span>
HTML Code:
<span>&#11782;</span>
HEX Code:
<span>&#x2E06;</span>

Add with CSS

.raised-interpolation-marker::before {
  content: '\\2E06';
}

Set it in JavaScript

document.querySelector('.raised-interpolation-marker').textContent = '⸆';
copied