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