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