File Separator



Shortcodes

Copy and paste codes for File Separator symbol  to use in your websites, apps, blogs, and more.

Unicode
U+001C
HTML Code

HEX Code

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

Customize File Separator Symbol

Customize  symbol as you like and download File Separator 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 File Separator symbol in HTML, CSS, and JS?

Insert  File Separator using HTML

1. Copy-paste File Separator directly:
<span></span>
2. HTML Decimal Code:
<span>&#28;</span>
3. Hexadecimal Code:
<span>&#x001C;</span>
Preview: 

Add File Separator symbol with CSS

.file-separator::before {
    content: '\\01C';
}
Preview: File Separator

File Separator JavaScript Code

1. Direct Symbol:
document.querySelector('.file-separator').textContent = '';
2. Unicode Escape for :
document.querySelector('.file-separator').textContent = '\u001C';
Preview: