Less Than or Equal

Unicode Name: Less-than Or Equal Ton

Shortcodes

Copy useful codes for less than or equal symbol ≤ to use in websites, apps, blogs, and docs.

Unicode
U+2264
Alt Code
243
HTML Code
≤
HTML Entity
≤
HEX Code
≤
CSS Code
\2264
JS/JSON
\u2264
Unix/C/PHP/JAVA
0x2264
URL-encode
%E2%89%A4

Customize Less Than or Equal

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

  

How to use Less Than or Equal Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>≤</span>
HTML Code:
<span>&#8804;</span>
HTML Entity:
<span>&le;</span>
HEX Code:
<span>&#x2264;</span>

Add with CSS

.less-than-or-equal::before {
  content: '\\2264';
}

Set it in JavaScript

document.querySelector('.less-than-or-equal').textContent = '≤';
copied