| Symboolnaam | Ogonek |
| Unicode-versie | 1.1 |
| Unicode | U+02DB |
| Unicode-blok | |
| Algemene categorie | Modifier Symbol (Sk) |
| CSS-code | \02DB |
| Hexadecimale code | 0x02DB |
| HTML-code | ˛ |
| LaTeX | \text{OGONEK} |
| Symbool | ˛ |
| URL-codering (UTF-8 procent) | %CB%9B |
| Uitgesproken naam / schermlezer | Ogonek |
| UTF-8 | CB 9B |
| UTF-16 | 02DB |
| UTF-32 | 000002DB |
1\documentclass{article}2\usepackage{pifont}3\text{OGONEK}4\end{document}Je kunt het ogonek-symbool op de meeste moderne apparaten typen met de volgende methoden:
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>De weergave van het Ogonek-symbool in verschillende programmeertalen vind je in onderstaande tabel:
| Taal | Weergave |
|---|---|
| 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}" |