Raised Interpolation Marker

Shortcodes

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

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

Customize Raised Interpolation Marker Symbol

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

Insert ⸆ Raised Interpolation Marker using HTML

1. Copy-paste Raised Interpolation Marker directly:
<span>⸆</span>
2. HTML Decimal Code:
<span>&#11782;</span>
3. Hexadecimal Code:
<span>&#x2E06;</span>
Preview:

Add Raised Interpolation Marker symbol with CSS

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

Raised Interpolation Marker JavaScript Code

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