File Separator



Shortcodes

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

Unicode
U+001C
HTML Code

HEX Code

CSS Code
\001C
JS/JSON
\u001C
Unix/C/PHP/JAVA
0x1C
URL-encode
%1C

Customize File Separator

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


  

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

Insert in HTML

1. Direct symbol:
<span></span>
HTML Code:
<span>&#28;</span>
HEX Code:
<span>&#x001C;</span>

Add with CSS

.file-separator::before {
  content: '\\001C';
}

Set it in JavaScript

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