Raised Dotted Interpolation Marker

Shortcodes

Copy and paste codes for Raised Dotted Interpolation Marker symbol ⸇ to use in your websites, apps, blogs, and more.

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

Customize Raised Dotted Interpolation Marker Symbol

Customize ⸇ symbol as you like and download Raised Dotted Interpolation Marker 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 Raised Dotted Interpolation Marker symbol in HTML, CSS, and JS?

Insert ⸇ Raised Dotted Interpolation Marker using HTML

1. Copy-paste Raised Dotted Interpolation Marker directly:
<span>⸇</span>
2. HTML Decimal Code:
<span>&#11783;</span>
3. Hexadecimal Code:
<span>&#x2E07;</span>
Preview:

Add Raised Dotted Interpolation Marker symbol with CSS

.raised-dotted-interpolation-marker::before {
    content: '\\2E07';
}
Preview: Raised Dotted Interpolation Marker

Raised Dotted Interpolation Marker JavaScript Code

1. Direct Symbol:
document.querySelector('.raised-dotted-interpolation-marker').textContent = '⸇';
2. Unicode Escape for ⸇:
document.querySelector('.raised-dotted-interpolation-marker').textContent = '\u2E07';
Preview: