Horizontal Scan Line-1

Shortcodes

Copy useful codes for horizontal scan line-1 symbol ⎺ to use in websites, apps, blogs, and docs.

Unicode
U+23BA
HTML Code
⎺
HEX Code
⎺
CSS Code
\23BA
JS/JSON
\u23BA
Unix/C/PHP/JAVA
0x23BA
URL-encode
%E2%8E%BA

Customize Horizontal Scan Line-1

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

  

How to use Horizontal Scan Line-1 Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⎺</span>
HTML Code:
<span>&#9146;</span>
HEX Code:
<span>&#x23BA;</span>

Add with CSS

.horizontal-scan-line-1::before {
  content: '\\23BA';
}

Set it in JavaScript

document.querySelector('.horizontal-scan-line-1').textContent = '⎺';
copied