| Nom du symbole | Dollar Sign |
| Version Unicode | 1.1 |
| Unicode | U+0024 |
| Bloc Unicode | |
| Catégorie générale | Currency Symbol (Sc) |
| Code CSS | \0024 |
| Code hexadécimal | 0x0024 |
| Code HTML | $ |
| LaTeX | \$ |
| Symbole | $ |
| Encodage URL (pourcent UTF-8) | %24 |
| Raccourci Discord / Slack | :heavy_dollar_sign: |
| Nom oral / lecteur d’écran | Dollar Sign |
| UTF-8 | 24 |
| UTF-16 | 0024 |
| UTF-32 | 00000024 |
1\documentclass{article}2\usepackage{pifont}3\$4\end{document}Vous pouvez saisir le symbole dollar sign sur la plupart des appareils modernes avec les méthodes suivantes :
Shift + 4 on standard keyboards, or Alt + 36 on the numeric keypad.
Shift + 4 on standard keyboards.
Shift + 4 on most keyboard layouts.
Tap the 123 key, then tap the $ symbol.
Tap the ?123 key, then tap the $ symbol.
1span.dollar::before { content: "\0024"; }1<span>$</span>La représentation du symbole Dollar Sign dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| JavaScript / TypeScript | '\u0024' or String.fromCodePoint(0x0024) |
| Python | '\N{DOLLAR SIGN}' or chr(36) |
| Rust | '\u{0024}' |
| C / C++ | UTF-8 source or wchar_t with U+0024 |
| Go | string(rune(0x0024)) |
| Ruby | "\u0024" |