Symbol For File Separator

Shortcodes

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

Unicode
U+241C
HTML Code
␜
HEX Code
␜
CSS Code
\241C
JS/JSON
\u241C
Unix/C/PHP/JAVA
0x241C
URL-encode
%E2%90%9C

Customize Symbol For File Separator

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

  

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

Insert in HTML

1. Direct symbol:
<span>␜</span>
HTML Code:
<span>&#9244;</span>
HEX Code:
<span>&#x241C;</span>

Add with CSS

.symbol-for-file-separator::before {
  content: '\\241C';
}

Set it in JavaScript

document.querySelector('.symbol-for-file-separator').textContent = '␜';
copied