Identical To

Shortcodes

Copy and paste codes for Identical To symbol ≡ to use in your websites, apps, blogs, and more.

Unicode
U+2261
Alt Code
240
HTML Code
≡
HEX Code
≡
CSS Code
\2261
JS/JSON
\u2261
Unix/C/PHP/JAVA
0x2261
URL-encode
%E2%89%A1
copied

Customize Identical To Symbol

Customize ≡ symbol as you like and download Identical To 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 Identical To symbol ≡ ?

Using Identical To Alt Code:

You can type the Identical To symbol ≡ using your keyboard by using the Alt Code for Identical To. 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 240 using the Numpad.
  3. Release the Alt key.

This will make the ≡ appear on your screen.

How to add Identical To symbol in HTML, CSS, and JS?

Insert ≡ Identical To using HTML

1. Copy-paste Identical To directly:
<span>≡</span>
2. HTML Decimal Code:
<span>&#8801;</span>
3. Hexadecimal Code:
<span>&#x2261;</span>
Preview:

Add Identical To symbol with CSS

.identical-to::before {
    content: '\\2261';
}
Preview: Identical To

Identical To JavaScript Code

1. Direct Symbol:
document.querySelector('.identical-to').textContent = '≡';
2. Unicode Escape for ≡:
document.querySelector('.identical-to').textContent = '\u2261';
Preview: