| Nom du symbole | Farsi Symbol |
| Version Unicode | 1.1 |
| Unicode | U+262B |
| Bloc Unicode | |
| Catégorie générale | Other Symbol (So) |
| Code CSS | \262B |
| Code hexadécimal | 0x262B |
| Code HTML | ☫ |
| LaTeX | \text{FARSISYMBOL} |
| Symbole | ☫ |
| Encodage URL (pourcent UTF-8) | %E2%98%AB |
| Nom oral / lecteur d’écran | Farsi Symbol |
| UTF-8 | E2 98 AB |
| UTF-16 | 262B |
| UTF-32 | 0000262B |
1\documentclass{article}2\usepackage{pifont}3\text{FARSISYMBOL}4\end{document}Vous pouvez saisir le symbole farsi sur la plupart des appareils modernes avec les méthodes suivantes :
Alt + 9771 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "farsi symbol", or use Unicode Hex Input with 262B.
Ctrl + Shift + U, type 262b, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the emoji keyboard.
Paste from this page or use a keyboard with religion symbol support.
1span.farsi-symbol::before { content: "\262B"; }1<span>☫</span>La représentation du symbole Farsi dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| JavaScript / TypeScript | '\u262B' or String.fromCodePoint(9771) |
| Python | '\N{FARSI SYMBOL}' or chr(9771) |
| Rust | '\u{262B}' |
| C / C++ | UTF-8 source or wchar_t with U+262B |
| Go | string(rune(0x262B)) |
| Ruby | "\u{262B}" |