| Nombre del símbolo | Latin Small Letter Barred O |
| Versión Unicode | 1.1 |
| Unicode | U+0275 |
| Bloque Unicode | |
| Categoría general | Lowercase Letter (Ll) |
| Código CSS | \0275 |
| Código hexadecimal | 0x0275 |
| Código HTML | ɵ |
| LaTeX | \text{LATINSMALLLETTERBARREDO} |
| Símbolo | ɵ |
| Codificación URL (porcentaje UTF-8) | %C9%B5 |
| Nombre oral / lector de pantalla | Latin Small Letter Barred O |
| UTF-8 | C9 B5 |
| UTF-16 | 0275 |
| UTF-32 | 00000275 |
1\documentclass{article}2\usepackage{pifont}3\text{LATINSMALLLETTERBARREDO}4\end{document}Puedes escribir el símbolo latin small letter barred o en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 629 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "latin small letter barred o", or use Unicode Hex Input with 0275.
Ctrl + Shift + U, type 0275, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the Latin keyboard.
Paste from this page or use a keyboard with Latin letter support.
1span.barred-o::before { content: "\0275"; font-family: "Charis SIL", "Doulos SIL", "DejaVu Serif", "Times New Roman", serif; }1<span>ɵ</span>La representación del símbolo Latin Small Letter Barred O en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\u0275' or String.fromCodePoint(629) |
| Python | '\N{LATIN SMALL LETTER BARRED O}' or chr(629) |
| Rust | '\u{0275}' |
| C / C++ | UTF-8 source or wchar_t with U+0275 |
| Go | string(rune(0x0275)) |
| Ruby | "\u{0275}" |