| Nom du symbole | Mongolian Tugrik |
| Version Unicode | 1.1 |
| Unicode | U+20AE |
| Bloc Unicode | |
| Catégorie générale | Currency Symbol (Sc) |
| Code CSS | \20AE |
| Code hexadécimal | 0x20AE |
| Code HTML | ₮ |
| LaTeX | \texttugrik |
| Symbole | ₮ |
| Encodage URL (pourcent UTF-8) | %E2%82%AE |
| Nom oral / lecteur d’écran | Mongolian Tugrik |
| UTF-8 | E2 82 AE |
| UTF-16 | 20AE |
| UTF-32 | 000020AE |
1\documentclass{article}2\usepackage{pifont}3\texttugrik4\end{document}Vous pouvez saisir le symbole mongolian tugrik sur la plupart des appareils modernes avec les méthodes suivantes :
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 représentation du symbole Mongolian Tugrik dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| 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" |