Raised Dotted Interpolation Marker

Shortcodes

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

Unicode
U+2E07
HTML Code
⸇
HEX Code
⸇
CSS Code
\2E07
JS/JSON
\u2E07
Unix/C/PHP/JAVA
0x2E07
URL-encode
%E2%B8%87

Customize Raised Dotted Interpolation Marker

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

  

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

Insert in HTML

1. Direct symbol:
<span>⸇</span>
HTML Code:
<span>&#11783;</span>
HEX Code:
<span>&#x2E07;</span>

Add with CSS

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

Set it in JavaScript

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