Dotted Transposition Marker

Shortcodes

Copy useful codes for dotted transposition marker symbol ⸈ to use in websites, apps, blogs, and docs.

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

Customize Dotted Transposition Marker

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

  

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

Insert in HTML

1. Direct symbol:
<span>⸈</span>
HTML Code:
<span>&#11784;</span>
HEX Code:
<span>&#x2E08;</span>

Add with CSS

.dotted-transposition-marker::before {
  content: '\\2E08';
}

Set it in JavaScript

document.querySelector('.dotted-transposition-marker').textContent = '⸈';
copied