| Nom du symbole | Greek Small Letter San |
| Version Unicode | 4.0 |
| Unicode | U+03FB |
| Bloc Unicode | |
| Catégorie générale | Lowercase Letter (Ll) |
| Code CSS | \03FB |
| Code hexadécimal | 0x03FB |
| Code HTML | ϻ |
| LaTeX | \text{GREEKSMALLLETTERSAN} |
| Symbole | ϻ |
| Encodage URL (pourcent UTF-8) | %CF%BB |
| Nom oral / lecteur d’écran | Greek Small Letter San |
| UTF-8 | CF BB |
| UTF-16 | 03FB |
| UTF-32 | 000003FB |
1\documentclass{article}2\usepackage{pifont}3\text{GREEKSMALLLETTERSAN}4\end{document}Vous pouvez saisir le symbole greek small letter san sur la plupart des appareils modernes avec les méthodes suivantes :
Alt + 1019 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "greek small letter san", or use Unicode Hex Input with 03FB.
Ctrl + Shift + U, type 03fb, 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-small-letter-san::before { content: "\03FB"; font-family: "Times New Roman", "Palatino Linotype", "DejaVu Serif", serif; }1<span>ϻ</span>La représentation du symbole Greek Small Letter San dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| JavaScript / TypeScript | '\u03FB' or String.fromCodePoint(1019) |
| Python | '\N{GREEK SMALL LETTER SAN}' or chr(1019) |
| Rust | '\u{03FB}' |
| C / C++ | UTF-8 source or wchar_t with U+03FB |
| Go | string(rune(0x03FB)) |
| Ruby | "\u{03FB}" |