| Symbol Name | Ogonek |
| Unicode Version | 1.1 |
| Unicode | U+02DB |
| Unicode block | |
| General category | Modifier Symbol (Sk) |
| CSS Code | \02DB |
| Hex Code | 0x02DB |
| HTML Code | ˛ |
| LaTeX | \text{OGONEK} |
| Symbol | ˛ |
| URL encode (UTF-8 percent) | %CB%9B |
| Spoken / screen reader name | Ogonek |
| UTF-8 | CB 9B |
| UTF-16 | 02DB |
| UTF-32 | 000002DB |
1\documentclass{article}2\usepackage{pifont}3\text{OGONEK}4\end{document}You can type the ogonek symbol on most modern devices with the help of following methods:
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>Ogonek symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| 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}" |