Symbol For Unit Separator

Shortcodes

Copy useful codes for symbol for unit separator ␟ to use in websites, apps, blogs, and docs.

Unicode
U+241F
HTML Code
␟
HEX Code
␟
CSS Code
\241F
JS/JSON
\u241F
Unix/C/PHP/JAVA
0x241F
URL-encode
%E2%90%9F

Customize Symbol For Unit Separator

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

  

How to use Symbol For Unit Separator in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>␟</span>
HTML Code:
<span>&#9247;</span>
HEX Code:
<span>&#x241F;</span>

Add with CSS

.symbol-for-unit-separator::before {
  content: '\\241F';
}

Set it in JavaScript

document.querySelector('.symbol-for-unit-separator').textContent = '␟';
copied