| Nombre del símbolo | Latin Small Letter M |
| Versión Unicode | 1.1 |
| Unicode | U+006D |
| Bloque Unicode | |
| Categoría general | Lowercase Letter (Ll) |
| Código CSS | \006D |
| Código hexadecimal | 0x006D |
| Código HTML | m |
| LaTeX | m |
| Símbolo | m |
| Codificación URL (porcentaje UTF-8) | %6D |
| Nombre oral / lector de pantalla | Latin Small Letter M |
| UTF-8 | 6D |
| UTF-16 | 006D |
| UTF-32 | 0000006D |
1\documentclass{article}2\usepackage{pifont}3m4\end{document}Puedes escribir el símbolo latin small letter m en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 109 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "latin small letter m", or use Unicode Hex Input with 006D.
Ctrl + Shift + U, type 006d, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the Latin keyboard.
Paste from this page or use a keyboard with Latin letter support.
1span.m::before { content: "\006D"; font-family: "Charis SIL", "Doulos SIL", "DejaVu Serif", "Times New Roman", serif; }1<span>m</span>La representación del símbolo Latin Small Letter M en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\u006D' or String.fromCodePoint(109) |
| Python | '\N{LATIN SMALL LETTER M}' or chr(109) |
| Rust | '\u{006D}' |
| C / C++ | UTF-8 source or wchar_t with U+006D |
| Go | string(rune(0x006D)) |
| Ruby | "\u{006D}" |