| Symboolnaam | Bitcoin Sign |
| Unicode-versie | 10.0 |
| Unicode | U+20BF |
| Unicode-blok | |
| Algemene categorie | Currency Symbol (Sc) |
| CSS-code | \20BF |
| Hexadecimale code | 0x20BF |
| HTML-code | ₿ |
| LaTeX | \textbitcoin |
| Symbool | ₿ |
| URL-codering (UTF-8 procent) | %E2%82%BF |
| Uitgesproken naam / schermlezer | Bitcoin Sign |
| UTF-8 | E2 82 BF |
| UTF-16 | 20BF |
| UTF-32 | 000020BF |
1\documentclass{article}2\usepackage{pifont}3\textbitcoin4\end{document}Je kunt het bitcoin sign-symbool op de meeste moderne apparaten typen met de volgende methoden:
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>De weergave van het Bitcoin Sign-symbool in verschillende programmeertalen vind je in onderstaande tabel:
| Taal | Weergave |
|---|---|
| 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" |