| Nom du symbole | Square Dl |
| Version Unicode | 1.1 |
| Unicode | U+3397 |
| Bloc Unicode | |
| Catégorie générale | Other Symbol (So) |
| Code CSS | \3397 |
| Code hexadécimal | 0x3397 |
| Code HTML | ㎗ |
| LaTeX | \text{DL} |
| Symbole | ㎗ |
| Encodage URL (pourcent UTF-8) | %E3%8E%97 |
| Nom oral / lecteur d’écran | Square Dl |
| UTF-8 | E3 8E 97 |
| UTF-16 | 3397 |
| UTF-32 | 00003397 |
1\documentclass{article}2\usepackage{pifont}3\text{DL}4\end{document}Vous pouvez saisir le symbole square dl sur la plupart des appareils modernes avec les méthodes suivantes :
Alt + 13207 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "square dl", or use Unicode Hex Input with 3397.
Ctrl + Shift + U, type 3397, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the symbol keyboard.
Paste from this page or use a keyboard with unit symbol support.
1span.square-dl::before { content: "\3397"; }1<span>㎗</span>La représentation du symbole Square Dl dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| JavaScript / TypeScript | '\u3397' or String.fromCodePoint(0x3397) |
| Python | '\N{SQUARE DL}' or chr(13207) |
| Rust | '\u{3397}' |
| C / C++ | UTF-8 source or wchar_t with U+3397 |
| Go | string(rune(0x3397)) |
| Ruby | "\u3397" |