| Symbol Name | Greek Varia |
| Unicode Version | 1.1 |
| Unicode | U+1FEF |
| Unicode block | |
| General category | Modifier Symbol (Sk) |
| CSS Code | \1FEF |
| Hex Code | 0x1FEF |
| HTML Code | ` |
| LaTeX | \text{GREEKVARIA} |
| Symbol | ` |
| URL encode (UTF-8 percent) | %E1%BF%AF |
| Spoken / screen reader name | Greek Varia |
| UTF-8 | E1 BF AF |
| UTF-16 | 1FEF |
| UTF-32 | 00001FEF |
1\documentclass{article}2\usepackage{pifont}3\text{GREEKVARIA}4\end{document}You can type the greek varia symbol on most modern devices with the help of following methods:
Alt + 8175 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "greek varia", or use Unicode Hex Input with 1FEF.
Ctrl + Shift + U, type 1fef, 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-varia::before { content: "\1FEF"; font-family: "Times New Roman", "Palatino Linotype", "DejaVu Serif", serif; }1<span>`</span>Greek Varia symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| JavaScript / TypeScript | '\u1FEF' or String.fromCodePoint(8175) |
| Python | '\N{GREEK VARIA}' or chr(8175) |
| Rust | '\u{1FEF}' |
| C / C++ | UTF-8 source or wchar_t with U+1FEF |
| Go | string(rune(0x1FEF)) |
| Ruby | "\u{1FEF}" |