| Nombre del símbolo | Ogonek |
| Versión Unicode | 1.1 |
| Unicode | U+02DB |
| Bloque Unicode | |
| Categoría general | Modifier Symbol (Sk) |
| Código CSS | \02DB |
| Código hexadecimal | 0x02DB |
| Código HTML | ˛ |
| LaTeX | \text{OGONEK} |
| Símbolo | ˛ |
| Codificación URL (porcentaje UTF-8) | %CB%9B |
| Nombre oral / lector de pantalla | Ogonek |
| UTF-8 | CB 9B |
| UTF-16 | 02DB |
| UTF-32 | 000002DB |
1\documentclass{article}2\usepackage{pifont}3\text{OGONEK}4\end{document}Puedes escribir el símbolo ogonek en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 731 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "ogonek", or use Unicode Hex Input with 02DB.
Ctrl + Shift + U, type 02db, 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.ogonek::before { content: "\02DB"; font-family: "Charis SIL", "Doulos SIL", "DejaVu Serif", "Times New Roman", serif; }1<span>˛</span>La representación del símbolo Ogonek en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\u02DB' or String.fromCodePoint(731) |
| Python | '\N{OGONEK}' or chr(731) |
| Rust | '\u{02DB}' |
| C / C++ | UTF-8 source or wchar_t with U+02DB |
| Go | string(rune(0x02DB)) |
| Ruby | "\u{02DB}" |