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