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