| Nombre del símbolo | Mongolian Tugrik |
| Versión Unicode | 1.1 |
| Unicode | U+20AE |
| Bloque Unicode | |
| Categoría general | Currency Symbol (Sc) |
| Código CSS | \20AE |
| Código hexadecimal | 0x20AE |
| Código HTML | ₮ |
| LaTeX | \texttugrik |
| Símbolo | ₮ |
| Codificación URL (porcentaje UTF-8) | %E2%82%AE |
| Nombre oral / lector de pantalla | Mongolian Tugrik |
| UTF-8 | E2 82 AE |
| UTF-16 | 20AE |
| UTF-32 | 000020AE |
1\documentclass{article}2\usepackage{pifont}3\texttugrik4\end{document}Puedes escribir el símbolo mongolian tugrik en la mayoría de dispositivos modernos con los siguientes métodos:
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 representación del símbolo Mongolian Tugrik en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| 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" |