Horizontal Scan Line-1

Shortcodes

Copy and paste codes for Horizontal Scan Line-1 symbol ⎺ to use in your websites, apps, blogs, and more.

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

Customize Horizontal Scan Line-1 Symbol

Customize ⎺ symbol as you like and download Horizontal Scan Line-1 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 Horizontal Scan Line-1 symbol in HTML, CSS, and JS?

Insert ⎺ Horizontal Scan Line-1 using HTML

1. Copy-paste Horizontal Scan Line-1 directly:
<span>⎺</span>
2. HTML Decimal Code:
<span>&#9146;</span>
3. Hexadecimal Code:
<span>&#x23BA;</span>
Preview:

Add Horizontal Scan Line-1 symbol with CSS

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

Horizontal Scan Line-1 JavaScript Code

1. Direct Symbol:
document.querySelector('.horizontal-scan-line-1').textContent = '⎺';
2. Unicode Escape for ⎺:
document.querySelector('.horizontal-scan-line-1').textContent = '\u23BA';
Preview: