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