| Symbol Name | Less-Than Or Equal To |
| Unicode Version | 1.1 |
| Unicode | U+2264 |
| Unicode block | |
| General category | Math Symbol (Sm) |
| CSS Code | \2264 |
| Hex Code | 0x2264 |
| HTML Code | ≤ |
| LaTeX | \le |
| Symbol | ≤ |
| URL encode (UTF-8 percent) | %E2%89%A4 |
| Spoken / screen reader name | Less Than Or Equal To |
| UTF-8 | E2 89 A4 |
| UTF-16 | 2264 |
| UTF-32 | 00002264 |
1\documentclass{article}2\usepackage{pifont}3\le4\end{document}You can type the less-than or equal to symbol on most modern devices with the help of following methods:
Alt + 8804 on the numeric keypad, or insert via Character Map.
Option + comma on many layouts, or Edit → Emoji & Symbols.
Ctrl + Shift + U, type 2264, then Enter (layout-dependent).
Paste from this page or use a math keyboard.
Paste from this page or use extended symbol panels.
1span.le::before { content: "\2264"; }1<span>≤</span>Less-Than Or Equal To symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| JavaScript / TypeScript | '\u2264' or String.fromCodePoint(0x2264) |
| Python | '\N{LESS-THAN OR EQUAL TO}' or chr(8804) |
| Rust | '\u{2264}' |
| C / C++ | UTF-8 source or wchar_t with U+2264 |
| Go | string(rune(0x2264)) |
| Ruby | "\u2264" |