| Symbolname | Dollar Sign |
| Unicode-Version | 1.1 |
| Unicode | U+0024 |
| Unicode-Block | |
| Allgemeine Kategorie | Currency Symbol (Sc) |
| CSS-Code | \0024 |
| Hexadezimalcode | 0x0024 |
| HTML-Code | $ |
| LaTeX | \$ |
| Symbol | $ |
| URL-Kodierung (UTF-8-Prozent) | %24 |
| Discord-/Slack-Kurzcode | :heavy_dollar_sign: |
| Ansagename (Screenreader) | Dollar Sign |
| UTF-8 | 24 |
| UTF-16 | 0024 |
| UTF-32 | 00000024 |
1\documentclass{article}2\usepackage{pifont}3\$4\end{document}Sie können das Symbol dollar sign auf den meisten modernen Geräten mit den folgenden Methoden eingeben:
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>Die Darstellung des Symbols Dollar Sign in verschiedenen Programmiersprachen finden Sie in der folgenden Tabelle:
| Sprache | Darstellung |
|---|---|
| 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" |