Corresponds To

Shortcodes

Copy useful codes for corresponds to symbol ≘ to use in websites, apps, blogs, and docs.

Unicode
U+2258
HTML Code
≘
HEX Code
≘
CSS Code
\2258
JS/JSON
\u2258
Unix/C/PHP/JAVA
0x2258
URL-encode
%E2%89%98

Customize Corresponds To

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

  

How to use Corresponds To Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>≘</span>
HTML Code:
<span>&#8792;</span>
HEX Code:
<span>&#x2258;</span>

Add with CSS

.corresponds-to::before {
  content: '\\2258';
}

Set it in JavaScript

document.querySelector('.corresponds-to').textContent = '≘';
copied