| Nome del simbolo | Less-Than Or Equal To |
| Versione Unicode | 1.1 |
| Unicode | U+2264 |
| Blocco Unicode | |
| Categoria generale | Math Symbol (Sm) |
| UTF-8 | E2 89 A4 |
| UTF-16 | 2264 |
| UTF-32 | 00002264 |
1\documentclass{article}2\usepackage{pifont}3\le4\end{document}Puoi digitare il simbolo less-than or equal to sulla maggior parte dei dispositivi moderni con i seguenti metodi:
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>La rappresentazione del simbolo Less-Than Or Equal To nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| 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" |
| Codice CSS |
\2264 |
| Codice esadecimale | 0x2264 |
| Codice HTML | ≤ |
| LaTeX | \le |
| Simbolo | ≤ |
| Codifica URL (percentuale UTF-8) | %E2%89%A4 |
| Nome parlato / screen reader | Less Than Or Equal To |