| 記号名 | Latin Letter Stretched C |
| Unicodeバージョン | 1.1 |
| Unicode | U+0297 |
| Unicodeブロック | |
| 一般カテゴリ | Lowercase Letter (Ll) |
| CSSコード | \0297 |
| 16進コード | 0x0297 |
| HTMLコード | ʗ |
| LaTeX | \text{LATINLETTERSTRETCHEDC} |
| 記号 | ʗ |
| URLエンコード(UTF-8パーセント) | %CA%97 |
| 読み上げ名 / スクリーンリーダー | Latin Letter Stretched C |
| UTF-8 | CA 97 |
| UTF-16 | 0297 |
| UTF-32 | 00000297 |
1\documentclass{article}2\usepackage{pifont}3\text{LATINLETTERSTRETCHEDC}4\end{document}以下の方法でほとんどの最新デバイスでlatin letter stretched c記号を入力できます:
Alt + 663 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "latin letter stretched c", or use Unicode Hex Input with 0297.
Ctrl + Shift + U, type 0297, 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.stretched-c::before { content: "\0297"; font-family: "Charis SIL", "Doulos SIL", "DejaVu Serif", "Times New Roman", serif; }1<span>ʗ</span>各プログラミング言語におけるLatin Letter Stretched C記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u0297' or String.fromCodePoint(663) |
| Python | '\N{LATIN LETTER STRETCHED C}' or chr(663) |
| Rust | '\u{0297}' |
| C / C++ | UTF-8 source or wchar_t with U+0297 |
| Go | string(rune(0x0297)) |
| Ruby | "\u{0297}" |