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