| Symboolnaam | Degree Sign |
| Unicode-versie | 1.1 |
| Unicode | U+00B0 |
| Unicode-blok | |
| Algemene categorie | Other Symbol (So) |
| CSS-code | \00B0 |
| Hexadecimale code | 0x00B0 |
| HTML-code | ° |
| LaTeX | \text{DEGREESIGN} |
| Symbool | ° |
| URL-codering (UTF-8 procent) | %C2%B0 |
| Uitgesproken naam / schermlezer | Degree Sign |
| UTF-8 | C2 B0 |
| UTF-16 | 00B0 |
| UTF-32 | 000000B0 |
1\documentclass{article}2\usepackage{pifont}3\text{DEGREESIGN}4\end{document}Je kunt het degree sign-symbool op de meeste moderne apparaten typen met de volgende methoden:
Alt + 176 on Windows (numeric keypad with Num Lock), or insert via Character Map / emoji panel.
Edit → Emoji & Symbols, search "degree sign", or paste from this page.
Ctrl + Shift + U, type 00b0, then Enter (layout-dependent), or paste.
Paste from this page, use the emoji keyboard, or pick from weather symbol suggestions.
Paste from this page or use keyboard weather/emoji suggestions.
1span.degree-sign::before { content: "\00B0"; }1<span>°</span>De weergave van het Degree Sign-symbool in verschillende programmeertalen vind je in onderstaande tabel:
| Taal | Weergave |
|---|---|
| JavaScript / TypeScript | '\u00B0' or String.fromCodePoint(176) |
| Python | '\N{DEGREE SIGN}' or chr(176) |
| Rust | '\u{00B0}' |
| C / C++ | UTF-8 source or wchar_t with U+00B0 |
| Go | string(rune(0x00B0)) |
| Ruby | "\u{00B0}" |