Unit Separator



Shortcodes

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

Unicode
U+001F
HTML Code

HEX Code

CSS Code
001F
JS/JSON
u001F
Unix/C/PHP/JAVA
0x001F
URL-encode
%1F

Customize Unit Separator

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


  

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

Insert in HTML

1. Direct symbol:
<span></span>
HTML Code:
<span>&#31;</span>
HEX Code:
<span>&#x001F;</span>

Add with CSS

.unit-separator::before {
  content: '001F';
}

Set it in JavaScript

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