| Nom du symbole | Latin Small Letter D |
| Version Unicode | 1.1 |
| Unicode | U+0064 |
| Bloc Unicode | |
| Catégorie générale | Lowercase Letter (Ll) |
| Code CSS | \0064 |
| Code hexadécimal | 0x0064 |
| Code HTML | d |
| LaTeX | d |
| Symbole | d |
| Encodage URL (pourcent UTF-8) | %64 |
| Nom oral / lecteur d’écran | Latin Small Letter D |
| UTF-8 | 64 |
| UTF-16 | 0064 |
| UTF-32 | 00000064 |
1\documentclass{article}2\usepackage{pifont}3d4\end{document}Vous pouvez saisir le symbole latin small letter d sur la plupart des appareils modernes avec les méthodes suivantes :
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>La représentation du symbole Latin Small Letter D dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| 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}" |