Record Separator



Shortcodes

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

Unicode
U+001E
HTML Code

HEX Code

CSS Code
001E
JS/JSON
u001E
Unix/C/PHP/JAVA
0x001E
URL-encode
%1E

Customize Record Separator

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


  

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

Insert in HTML

1. Direct symbol:
<span></span>
HTML Code:
<span>&#30;</span>
HEX Code:
<span>&#x001E;</span>

Add with CSS

.record-separator::before {
  content: '001E';
}

Set it in JavaScript

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