| Nome del simbolo | Dollar Sign |
| Versione Unicode | 1.1 |
| Unicode | U+0024 |
| Blocco Unicode | |
| Categoria generale | Currency Symbol (Sc) |
| Codice CSS | \0024 |
| Codice esadecimale | 0x0024 |
| Codice HTML | $ |
| LaTeX | \$ |
| Simbolo | $ |
| Codifica URL (percentuale UTF-8) | %24 |
| Shortcode Discord / Slack | :heavy_dollar_sign: |
| Nome parlato / screen reader | Dollar Sign |
| UTF-8 | 24 |
| UTF-16 | 0024 |
| UTF-32 | 00000024 |
1\documentclass{article}2\usepackage{pifont}3\$4\end{document}Puoi digitare il simbolo dollar sign sulla maggior parte dei dispositivi moderni con i seguenti metodi:
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 rappresentazione del simbolo Dollar Sign nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| 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" |