| Nombre del símbolo | Dollar Sign |
| Versión Unicode | 1.1 |
| Unicode | U+0024 |
| Bloque Unicode | |
| Categoría general | Currency Symbol (Sc) |
| Código CSS | \0024 |
| Código hexadecimal | 0x0024 |
| Código HTML | $ |
| LaTeX | \$ |
| Símbolo | $ |
| Codificación URL (porcentaje UTF-8) | %24 |
| Atajo Discord / Slack | :heavy_dollar_sign: |
| Nombre oral / lector de pantalla | Dollar Sign |
| UTF-8 | 24 |
| UTF-16 | 0024 |
| UTF-32 | 00000024 |
1\documentclass{article}2\usepackage{pifont}3\$4\end{document}Puedes escribir el símbolo dollar sign en la mayoría de dispositivos modernos con los siguientes métodos:
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 representación del símbolo Dollar Sign en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| 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" |