| Nombre del símbolo | Bitcoin Sign |
| Versión Unicode | 10.0 |
| Unicode | U+20BF |
| Bloque Unicode | |
| Categoría general | Currency Symbol (Sc) |
| Código CSS | \20BF |
| Código hexadecimal | 0x20BF |
| Código HTML | ₿ |
| LaTeX | \textbitcoin |
| Símbolo | ₿ |
| Codificación URL (porcentaje UTF-8) | %E2%82%BF |
| Nombre oral / lector de pantalla | Bitcoin Sign |
| UTF-8 | E2 82 BF |
| UTF-16 | 20BF |
| UTF-32 | 000020BF |
1\documentclass{article}2\usepackage{pifont}3\textbitcoin4\end{document}Puedes escribir el símbolo bitcoin sign en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 8383 on the numeric keypad with Num Lock active, or insert via Character Map.
Edit → Emoji & Symbols, search "bitcoin", or enable Unicode Hex Input and type 20BF.
Ctrl + Shift + U, type 20bf, then Enter (layout-dependent).
Use the symbol picker, paste from this page, or install a crypto-aware keyboard.
Long-press the $ key on supported keyboards, paste from this page, or use Gboard symbol search.
1span.bitcoin::before { content: "\20BF"; }1<span>₿</span>La representación del símbolo Bitcoin Sign en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\u20BF' or String.fromCodePoint(0x20BF) |
| Python | '\N{BITCOIN SIGN}' or chr(8383) |
| Rust | '\u{20BF}' |
| C / C++ | UTF-8 source or wchar_t with U+20BF |
| Go | string(rune(0x20BF)) |
| Ruby | "\u20BF" |