| Nombre del símbolo | Mayan Numeral One |
| Versión Unicode | 11.0 |
| Unicode | U+1D2E1 |
| Bloque Unicode | |
| Categoría general | No (No) |
| Código CSS | \1D2E1 |
| Código hexadecimal | 0x1D2E1 |
| Código HTML | 𝋡 |
| LaTeX | \text{MAYANNUMERALONE} |
| Símbolo | 𝋡 |
| Codificación URL (porcentaje UTF-8) | %F0%9D%8B%A1 |
| Nombre oral / lector de pantalla | Mayan Numeral One |
| UTF-8 | F0 9D 8B A1 |
| UTF-16 | D834 DEE1 |
| UTF-32 | 0001D2E1 |
1\documentclass{article}2\usepackage{pifont}3\text{MAYANNUMERALONE}4\end{document}Puedes escribir el símbolo mayan numeral one en la mayoría de dispositivos modernos con los siguientes métodos:
Character Map, paste from this page, or U+ hex entry, or insert via Character Map / BabelMap.
Edit → Emoji & Symbols, search "mayan numeral one", or paste from this page.
Ctrl + Shift + U, type 1d2e1, then Enter (layout-dependent).
Paste from this page, use text replacement, or a hieroglyph-capable keyboard app.
Paste from this page or use a hieroglyph font keyboard.
1span.mayan-numeral-one::before { content: "\1D2E1"; font-family: "Noto Sans Egyptian Hieroglyphs", "Segoe UI Historic", sans-serif; }1<span>𝋡</span>La representación del símbolo Mayan Numeral One en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\uD834\uDEE1' or String.fromCodePoint(0x1D2E1) |
| Python | '\U{1D2E1}' or chr(0x1D2E1) |
| Rust | '\u{1D2E1}' |
| C / C++ | UTF-8 source or wchar_t with U+1D2E1 |
| Go | string(rune(0x1D2E1)) |
| Ruby | "\u{1D2E1}" |