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