| 記号名 | Latin Small Letter C |
| Unicodeバージョン | 1.1 |
| Unicode | U+0063 |
| Unicodeブロック | |
| 一般カテゴリ | Lowercase Letter (Ll) |
| CSSコード | \0063 |
| 16進コード | 0x0063 |
| HTMLコード | c |
| LaTeX | c |
| 記号 | c |
| URLエンコード(UTF-8パーセント) | %63 |
| 読み上げ名 / スクリーンリーダー | Latin Small Letter C |
| UTF-8 | 63 |
| UTF-16 | 0063 |
| UTF-32 | 00000063 |
1\documentclass{article}2\usepackage{pifont}3c4\end{document}以下の方法でほとんどの最新デバイスでlatin small letter c記号を入力できます:
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>各プログラミング言語におけるLatin Small Letter C記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| 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}" |