| Nombre del símbolo | Currency Sign |
| Versión Unicode | 1.1 |
| Unicode | U+00A4 |
| Bloque Unicode | |
| Categoría general | Currency Symbol (Sc) |
| Código CSS | \00A4 |
| Código hexadecimal | 0x00A4 |
| Código HTML | ¤ |
| LaTeX | \textcurrency |
| Símbolo | ¤ |
| Codificación URL (porcentaje UTF-8) | %C2%A4 |
| Nombre oral / lector de pantalla | Currency Sign |
| UTF-8 | C2 A4 |
| UTF-16 | 00A4 |
| UTF-32 | 000000A4 |
1\documentclass{article}2\usepackage{pifont}3\textcurrency4\end{document}Puedes escribir el símbolo currency sign en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 0164 on the numeric keypad, or insert via Character Map.
Edit → Emoji & Symbols, search "currency", or enable Unicode Hex Input.
Ctrl + Shift + U, type 00a4, then Enter (layout-dependent).
Paste from this page or use the symbol picker.
Paste from this page or select from extended symbol panels.
1span.currency::before { content: "\00A4"; }1<span>¤</span>La representación del símbolo Currency Sign en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\u00A4' or String.fromCodePoint(0x00A4) |
| Python | '\N{CURRENCY SIGN}' or chr(164) |
| Rust | '\u{00A4}' |
| C / C++ | UTF-8 source or wchar_t with U+00A4 |
| Go | string(rune(0x00A4)) |
| Ruby | "\u00A4" |