Low Line

_

Shortcodes

Copy and paste codes for Low Line symbol _ to use in your websites, apps, blogs, and more.

Unicode
U+005F
Alt Code
95
HTML Code
_
HEX Code
_
CSS Code
\05F
JS/JSON
\u005F
Unix/C/PHP/JAVA
0x5F
URL-encode
_
copied

Customize Low Line Symbol

Customize _ symbol as you like and download Low Line 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 type Low Line symbol _ ?

Using Low Line Alt Code:

You can type the Low Line symbol _ using your keyboard by using the Alt Code for Low Line. Before you begin, ensure that your Num Lock is turned on, and use the Numpad to type the code. Then, follow these simple steps:

  1. Hold down the Alt key on your keyboard.
  2. Type the number 95 using the Numpad.
  3. Release the Alt key.

This will make the _ appear on your screen.

How to add Low Line symbol in HTML, CSS, and JS?

Insert _ Low Line using HTML

1. Copy-paste Low Line directly:
<span>_</span>
2. HTML Decimal Code:
<span>&#95;</span>
3. Hexadecimal Code:
<span>&#x005F;</span>
Preview: _

Add Low Line symbol with CSS

.low-line::before {
    content: '\\05F';
}
Preview: Low Line

Low Line JavaScript Code

1. Direct Symbol:
document.querySelector('.low-line').textContent = '_';
2. Unicode Escape for _:
document.querySelector('.low-line').textContent = '\u005F';
Preview: _