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