Tilde

~

Shortcodes

Copy and paste codes for Tilde symbol ~ to use in your websites, apps, blogs, and more.

Unicode
U+007E
Alt Code
126
HTML Code
~
HEX Code
~
CSS Code
\07E
JS/JSON
\u007E
Unix/C/PHP/JAVA
0x7E
URL-encode
~
copied

Customize ~ Symbol

Customize ~ symbol as you like and download Tilde 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 Tilde symbol ~ ?

Using Tilde Alt Code:

You can type the Tilde symbol ~ using your keyboard by using the Alt Code for Tilde. 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 Alt code 126 using the Numpad.
  3. Release the Alt key.

This will make the ~ appear on your screen.

Alternative Methods:

  • You can try inserting Tilde symbol using these system tools:
    • Mac Character Viewer (Control + Command + Space)
    • Windows Emoji/Symbol Picker (Win + .)
    • Windows Character Map (charmap.exe)
  • Note: These tools may not include all Unicode symbols
  • Copy and paste the ~ symbol directly from this website.
  • Use provided codes for Tilde symbol where they are supported.

How to add Tilde symbol in HTML, CSS, and JS?

HTML Methods:

1. Direct Symbol:
<span>~</span>
2. HTML Decimal Code:
<span>&#126;</span>
3. Hexadecimal Code:
<span>&#x007E;</span>
Preview: ~

CSS Method:

.symbol::before {
    content: '\\07E';
}
Preview: Symbol

JavaScript Methods:

1. Direct Symbol:
document.querySelector('.symbol').textContent = '~';
2. Unicode Escape:
document.querySelector('.symbol').textContent = '\u007E';
Preview: ~