| Nombre del símbolo | Modifier Letter Small Z |
| Versión Unicode | 4.1 |
| Unicode | U+1DBB |
| Bloque Unicode | |
| Categoría general | Modifier Letter (Lm) |
| Código CSS | \1DBB |
| Código hexadecimal | 0x1DBB |
| Código HTML | ᶻ |
| LaTeX | \text{MODIFIERLETTERSMALLZ} |
| Símbolo | ᶻ |
| Codificación URL (porcentaje UTF-8) | %E1%B6%BB |
| Nombre oral / lector de pantalla | Modifier Letter Small Z |
| UTF-8 | E1 B6 BB |
| UTF-16 | 1DBB |
| UTF-32 | 00001DBB |
1\documentclass{article}2\usepackage{pifont}3\text{MODIFIERLETTERSMALLZ}4\end{document}Puedes escribir el símbolo modifier letter small z en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 7611 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "modifier letter small z", or use Unicode Hex Input with 1DBB.
Ctrl + Shift + U, type 1dbb, 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.modifier-letter-small-z::before { content: "\1DBB"; font-family: "Charis SIL", "Doulos SIL", "DejaVu Serif", "Times New Roman", serif; }1<span>ᶻ</span>La representación del símbolo Modifier Letter Small Z en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\u1DBB' or String.fromCodePoint(7611) |
| Python | '\N{MODIFIER LETTER SMALL Z}' or chr(7611) |
| Rust | '\u{1DBB}' |
| C / C++ | UTF-8 source or wchar_t with U+1DBB |
| Go | string(rune(0x1DBB)) |
| Ruby | "\u{1DBB}" |