| Nombre del símbolo | Greek Small Letter Sampi |
| Versión Unicode | 3.0 |
| Unicode | U+03E1 |
| Bloque Unicode | |
| Categoría general | Lowercase Letter (Ll) |
| Código CSS | \03E1 |
| Código hexadecimal | 0x03E1 |
| Código HTML | ϡ |
| LaTeX | \text{GREEKSMALLLETTERSAMPI} |
| Símbolo | ϡ |
| Codificación URL (porcentaje UTF-8) | %CF%A1 |
| Nombre oral / lector de pantalla | Greek Small Letter Sampi |
| UTF-8 | CF A1 |
| UTF-16 | 03E1 |
| UTF-32 | 000003E1 |
1\documentclass{article}2\usepackage{pifont}3\text{GREEKSMALLLETTERSAMPI}4\end{document}Puedes escribir el símbolo greek small letter sampi en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 993 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "greek small letter sampi", or use Unicode Hex Input with 03E1.
Ctrl + Shift + U, type 03e1, 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.sampi::before { content: "\03E1"; font-family: "Times New Roman", "Palatino Linotype", "DejaVu Serif", serif; }1<span>ϡ</span>La representación del símbolo Greek Small Letter Sampi en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\u03E1' or String.fromCodePoint(993) |
| Python | '\N{GREEK SMALL LETTER SAMPI}' or chr(993) |
| Rust | '\u{03E1}' |
| C / C++ | UTF-8 source or wchar_t with U+03E1 |
| Go | string(rune(0x03E1)) |
| Ruby | "\u{03E1}" |