BrowseASCII ArtSymbolsASCII TableLearnToolsImage to ASCIIASCII CameraGIF to ASCIIVideo to ASCIIDot ArtEmoji Art

Degree Symbol ° to Copy & Paste

The degree symbol ° is not part of ASCII — it lives in Unicode at U+00B0 (and in the Latin-1 extension). It is fully supported on every modern device. Use it for temperatures (72°F) and angles (90°). A common mistake is grabbing the masculine ordinal º (U+00BA) by accident; it looks similar but is a different character, so copy the correct ° below.

°
Degree sign
U+00B0 · °
Degree Celsius
U+2103 · ℃
Degree Fahrenheit
U+2109 · ℉
K
Kelvin (no degree sign used)
U+004B · K
º
Masculine ordinal indicator (not a degree)
U+00BA · º
Ring operator (math)
U+2218 · ∘
Superscript zero
U+2070 · ⁰
˚
Ring above (diacritic — often mistaken for degree)
U+02DA · ˚

How to type the degree symbol on Windows and Mac

On Windows, hold Alt and type 0176 on the numeric keypad to insert °. This is the reliable code across applications. You can also use the Character Map app and search for "degree". On a Mac, press Option+Shift+8 to type ° directly. On an iPhone or iPad, press and hold the 0 key on the number pad and the ° option appears. On Android, the ° is under the symbols keyboard, often behind the long-press of the 0 key as well.

Degrees in HTML and code

In HTML, write ° or ° to render ° regardless of file encoding. For a temperature you can combine it, for example 20°C. There are also precomposed characters ℃ (U+2103) and ℉ (U+2109), but style guides generally prefer writing the degree sign plus a normal letter (°C, °F) rather than the single-glyph versions. In source code and JSON, the escape \u00B0 represents the degree sign. Watch out for the masculine ordinal º (U+00BA) sneaking in from autocorrect or a Spanish keyboard layout — it will fail equality checks against a real degree sign.

Related

FAQ

What is the Alt code for the degree symbol?
On Windows, hold Alt and type 0176 on the numeric keypad to get °. The shorter Alt+248 also produces a degree sign in some legacy code pages, but 0176 is the dependable choice.
Is the degree symbol ASCII?
No. The degree sign ° is Unicode U+00B0. It sits in the Latin-1 supplement, just outside the 128-character ASCII range, so it is not a plain ASCII character even though it displays everywhere.
Should I use ° C or the single ℃ character?
Most style guides recommend the degree sign followed by a letter (°C, °F) rather than the precomposed ℃ or ℉, because the separate characters are more widely readable by fonts and screen readers.