| Nombre del símbolo | Fullwidth Left Parenthesis |
| Versión Unicode | 1.1 |
| Unicode | U+FF08 |
| Bloque Unicode | |
| Categoría general | Open Punctuation (Ps) |
| UTF-8 | EF BC 88 |
| UTF-16 | FF08 |
| UTF-32 | 0000FF08 |
1\documentclass{article}2\usepackage{pifont}3\text{FULLWIDTHLEFTPARENTHESIS}4\end{document}Puedes escribir el símbolo fullwidth left parenthesis en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 65288 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "fullwidth left parenthesis", or use Unicode Hex Input with FF08.
Ctrl + Shift + U, type ff08, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the symbol keyboard.
Paste from this page or use a keyboard with bracket and quote support.
1span.fullwidth-left-parenthesis::before { content: "\FF08"; }1<span>(</span>La representación del símbolo Fullwidth Left Parenthesis en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\uFF08' or String.fromCodePoint(65288) |
| Python | '\N{FULLWIDTH LEFT PARENTHESIS}' or chr(65288) |
| Rust | '\u{FF08}' |
| C / C++ | UTF-8 source or wchar_t with U+FF08 |
| Go | string(rune(0xFF08)) |
| Ruby | "\u{FF08}" |
| Código CSS |
\FF08 |
| Código hexadecimal | 0xFF08 |
| Código HTML | ( |
| LaTeX | \text{FULLWIDTHLEFTPARENTHESIS} |
| Símbolo | ( |
| Codificación URL (porcentaje UTF-8) | %EF%BC%88 |
| Nombre oral / lector de pantalla | Fullwidth Left Parenthesis |