| Symboolnaam | Pound Sign |
| Unicode-versie | 1.1 |
| Unicode | U+00A3 |
| Unicode-blok | |
| Algemene categorie | Currency Symbol (Sc) |
| CSS-code | \00A3 |
| Hexadecimale code | 0x00A3 |
| HTML-code | £ |
| LaTeX | \pounds |
| Symbool | £ |
| URL-codering (UTF-8 procent) | %C2%A3 |
| Uitgesproken naam / schermlezer | Pound Sign |
| UTF-8 | C2 A3 |
| UTF-16 | 00A3 |
| UTF-32 | 000000A3 |
1\documentclass{article}2\usepackage{pifont}3\pounds4\end{document}Je kunt het pound sign-symbool op de meeste moderne apparaten typen met de volgende methoden:
Alt + 0163 on the numeric keypad, or insert via Character Map.
Option + 3 on most layouts.
Ctrl + Shift + U, type 00a3, then Enter (layout-dependent).
Long-press the $ key, or use the symbol picker.
Long-press the $ key on many keyboards, or paste from this page.
1span.pound::before { content: "\00A3"; }1<span>£</span>De weergave van het Pound Sign-symbool in verschillende programmeertalen vind je in onderstaande tabel:
| Taal | Weergave |
|---|---|
| JavaScript / TypeScript | '\u00A3' or String.fromCodePoint(0x00A3) |
| Python | '\N{POUND SIGN}' or chr(163) |
| Rust | '\u{00A3}' |
| C / C++ | UTF-8 source or wchar_t with U+00A3 |
| Go | string(rune(0x00A3)) |
| Ruby | "\u00A3" |