Dotted Transposition Marker

Shortcodes

Copy and paste codes for Dotted Transposition Marker symbol ⸈ to use in your websites, apps, blogs, and more.

Unicode
U+2E08
HTML Code
⸈
HEX Code
⸈
CSS Code
\2E08
JS/JSON
\u2E08
Unix/C/PHP/JAVA
0x2E08
URL-encode
%E2%B8%88
copied

Customize Dotted Transposition Marker Symbol

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

Insert ⸈ Dotted Transposition Marker using HTML

1. Copy-paste Dotted Transposition Marker directly:
<span>⸈</span>
2. HTML Decimal Code:
<span>&#11784;</span>
3. Hexadecimal Code:
<span>&#x2E08;</span>
Preview:

Add Dotted Transposition Marker symbol with CSS

.dotted-transposition-marker::before {
    content: '\\2E08';
}
Preview: Dotted Transposition Marker

Dotted Transposition Marker JavaScript Code

1. Direct Symbol:
document.querySelector('.dotted-transposition-marker').textContent = '⸈';
2. Unicode Escape for ⸈:
document.querySelector('.dotted-transposition-marker').textContent = '\u2E08';
Preview: