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