| Nome del simbolo | Greek Koronis |
| Versione Unicode | 1.1 |
| Unicode | U+1FBD |
| Blocco Unicode | |
| Categoria generale | Modifier Symbol (Sk) |
| Codice CSS | \1FBD |
| Codice esadecimale | 0x1FBD |
| Codice HTML | ᾽ |
| LaTeX | \text{GREEKKORONIS} |
| Simbolo | ᾽ |
| Codifica URL (percentuale UTF-8) | %E1%BE%BD |
| Nome parlato / screen reader | Greek Koronis |
| UTF-8 | E1 BE BD |
| UTF-16 | 1FBD |
| UTF-32 | 00001FBD |
1\documentclass{article}2\usepackage{pifont}3\text{GREEKKORONIS}4\end{document}Puoi digitare il simbolo greek koronis sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 8125 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "greek koronis", or use Unicode Hex Input with 1FBD.
Ctrl + Shift + U, type 1fbd, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the Greek keyboard.
Paste from this page or use a keyboard with Greek letter support.
1span.greek-koronis::before { content: "\1FBD"; font-family: "Times New Roman", "Palatino Linotype", "DejaVu Serif", serif; }1<span>᾽</span>La rappresentazione del simbolo Greek Koronis nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u1FBD' or String.fromCodePoint(8125) |
| Python | '\N{GREEK KORONIS}' or chr(8125) |
| Rust | '\u{1FBD}' |
| C / C++ | UTF-8 source or wchar_t with U+1FBD |
| Go | string(rune(0x1FBD)) |
| Ruby | "\u{1FBD}" |