Horizontal Scan Line-9

Shortcodes

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

Unicode
U+23BD
HTML Code
⎽
HEX Code
⎽
CSS Code
\23BD
JS/JSON
\u23BD
Unix/C/PHP/JAVA
0x23BD
URL-encode
%E2%8E%BD

Customize Horizontal Scan Line-9

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

  

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

Insert in HTML

1. Direct symbol:
<span>⎽</span>
HTML Code:
<span>&#9149;</span>
HEX Code:
<span>&#x23BD;</span>

Add with CSS

.horizontal-scan-line-9::before {
  content: '\\23BD';
}

Set it in JavaScript

document.querySelector('.horizontal-scan-line-9').textContent = '⎽';
copied