| Symboolnaam | Dollar Sign |
| Unicode-versie | 1.1 |
| Unicode | U+0024 |
| Unicode-blok | |
| Algemene categorie | Currency Symbol (Sc) |
| CSS-code | \0024 |
| Hexadecimale code | 0x0024 |
| HTML-code | $ |
| LaTeX | \$ |
| Symbool | $ |
| URL-codering (UTF-8 procent) | %24 |
| Discord / Slack-shortcode | :heavy_dollar_sign: |
| Uitgesproken naam / schermlezer | Dollar Sign |
| UTF-8 | 24 |
| UTF-16 | 0024 |
| UTF-32 | 00000024 |
1\documentclass{article}2\usepackage{pifont}3\$4\end{document}Je kunt het dollar sign-symbool op de meeste moderne apparaten typen met de volgende methoden:
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>De weergave van het Dollar Sign-symbool in verschillende programmeertalen vind je in onderstaande tabel:
| Taal | Weergave |
|---|---|
| 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" |