| Nombre del símbolo | Less-Than Or Equal To |
| Versión Unicode | 1.1 |
| Unicode | U+2264 |
| Bloque Unicode | |
| Categoría general | Math Symbol (Sm) |
| UTF-8 | E2 89 A4 |
| UTF-16 | 2264 |
| UTF-32 | 00002264 |
1\documentclass{article}2\usepackage{pifont}3\le4\end{document}Puedes escribir el símbolo less-than or equal to en la mayoría de dispositivos modernos con los siguientes métodos:
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 representación del símbolo Less-Than Or Equal To en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| 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" |
| Código CSS |
\2264 |
| Código hexadecimal | 0x2264 |
| Código HTML | ≤ |
| LaTeX | \le |
| Símbolo | ≤ |
| Codificación URL (porcentaje UTF-8) | %E2%89%A4 |
| Nombre oral / lector de pantalla | Less Than Or Equal To |