| Nombre del símbolo | Left Curly Bracket |
| Versión Unicode | 1.1 |
| Unicode | U+007B |
| Bloque Unicode | |
| Categoría general | Open Punctuation (Ps) |
| Código CSS |
| UTF-8 | 7B |
| UTF-16 | 007B |
| UTF-32 | 0000007B |
1\documentclass{article}2\usepackage{pifont}3\{4\end{document}Puedes escribir el símbolo left curly bracket en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 123 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "left curly bracket", or use Unicode Hex Input with 007B.
Ctrl + Shift + U, type 007b, 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.left-curly-bracket::before { content: "\007B"; }1<span>{</span>La representación del símbolo Left Curly Bracket en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\u007B' or String.fromCodePoint(123) |
| Python | '\N{LEFT CURLY BRACKET}' or chr(123) |
| Rust | '\u{007B}' |
| C / C++ | UTF-8 source or wchar_t with U+007B |
| Go | string(rune(0x007B)) |
| Ruby | "\u{007B}" |
\007B |
| Código hexadecimal | 0x007B |
| Código HTML | { |
| LaTeX | \{ |
| Símbolo | { |
| Codificación URL (porcentaje UTF-8) | %7B |
| Nombre oral / lector de pantalla | Left Curly Bracket |