| Nome del simbolo | Mongolian Tugrik |
| Versione Unicode | 1.1 |
| Unicode | U+20AE |
| Blocco Unicode | |
| Categoria generale | Currency Symbol (Sc) |
| Codice CSS | \20AE |
| Codice esadecimale | 0x20AE |
| Codice HTML | ₮ |
| LaTeX | \texttugrik |
| Simbolo | ₮ |
| Codifica URL (percentuale UTF-8) | %E2%82%AE |
| Nome parlato / screen reader | Mongolian Tugrik |
| UTF-8 | E2 82 AE |
| UTF-16 | 20AE |
| UTF-32 | 000020AE |
1\documentclass{article}2\usepackage{pifont}3\texttugrik4\end{document}Puoi digitare il simbolo mongolian tugrik sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 8366 on the numeric keypad, or insert via Character Map.
Edit → Emoji & Symbols, search "tugrik", or enable Unicode Hex Input.
Ctrl + Shift + U, type 20ae, then Enter (layout-dependent).
Paste from this page or use the symbol picker.
Paste from this page or select from extended symbol panels.
1span.tugrik::before { content: "\20AE"; }1<span>₮</span>La rappresentazione del simbolo Mongolian Tugrik nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u20AE' or String.fromCodePoint(0x20AE) |
| Python | '\N{TUGRIK SIGN}' or chr(8366) |
| Rust | '\u{20AE}' |
| C / C++ | UTF-8 source or wchar_t with U+20AE |
| Go | string(rune(0x20AE)) |
| Ruby | "\u20AE" |