Home
Every Shortcut to Type the Degree Symbol on Windows Mac and Mobile
The degree symbol (°) is a fundamental typographic element required for scientific documentation, weather reporting, geographic coordinates, and mathematical equations. While it is one of the most frequently used special characters, it notably lacks a dedicated key on standard QWERTY keyboard layouts. This necessitates the use of specific keyboard shortcuts, alt codes, or software-specific menus.
Understanding how to access this symbol efficiently can significantly improve workflow, whether you are drafting a technical report on a Windows workstation, writing a blog post on a Mac, or sending a quick temperature update from a smartphone.
Quick Reference for Common Devices
For those requiring an immediate solution, these are the most reliable methods for the primary operating systems:
- Windows (Desktop with Numpad): Hold Alt and type 0176 on the numeric keypad.
- Windows (Laptop/Desktop): Press Windows Key + . (period) to open the symbol panel, then search for "degree."
- macOS: Press Shift + Option + 8.
- iPhone/Android: Long-press the 0 (zero) key on the numeric keyboard.
- Chromebook: Press Ctrl + Shift + U, type 00B0, and press Enter.
Typing the Degree Symbol on Windows
Windows offers multiple layers of interaction for special characters. The "correct" method often depends on the specific hardware configuration of your keyboard, particularly whether it features a dedicated numeric keypad.
Using Alt Codes with the Numeric Keypad
The Alt code method is considered the professional standard for Windows users due to its speed and universal compatibility across almost all Windows-based applications, including legacy software.
To use this method:
- Verify that Num Lock is enabled on your keyboard.
- Press and hold the Alt key on the left side of the keyboard.
- While holding Alt, type the sequence 0176 using the numeric keypad (the block of numbers on the right side). Note that using the numbers in the top row above the letters will not trigger the code.
- Release the Alt key. The symbol (°) will appear instantly.
Technical testing reveals that an alternative code, Alt + 248, also functions in many environments. However, Alt + 0176 is the official Unicode-based sequence and is more reliable in modern web browsers and word processors.
The Windows Emoji and Symbol Panel
For users on modern laptops (Ultrabooks, MacBooks running Windows via Boot Camp, or TKL keyboards) that lack a numeric keypad, the Emoji and Symbol Panel introduced in Windows 10 and 11 is the most efficient alternative.
- Place the cursor where the symbol is needed.
- Press the Windows Key and the Period (.) key simultaneously.
- Click on the Symbols icon (represented by the Greek letter Omega Ω) at the top of the pop-up window.
- Scroll down to the "General Punctuation" section or simply type "degree" in the search bar.
- Click the symbol to insert it.
This method is particularly advantageous because it does not require memorizing four-digit codes and provides a visual confirmation of the character being inserted.
Character Map for Legacy Support
In instances where keyboard shortcuts fail or in highly specialized software, the Windows Character Map remains a robust fallback.
- Press the Windows key and type Character Map, then press Enter.
- Ensure the "Font" is set to your current working font (e.g., Arial or Times New Roman).
- Check the Advanced view box.
- In the "Search for" field, type "degree."
- Click Select, then click Copy.
- Paste (Ctrl + V) the symbol into your document.
Mastering the Degree Symbol on macOS
Apple’s macOS is widely praised for its intuitive handling of special characters. Unlike Windows, which relies on numeric codes, macOS utilizes mnemonic shortcuts that are consistent across the entire operating system.
The System-Wide Keyboard Shortcut
The fastest way to type a degree sign on any Mac (MacBook, iMac, Mac Mini) is:
- Shift + Option + 8
It is important to distinguish this from Option + K or Option + 0. In many Mac fonts, Option + K produces a "ring above" diacritic (˚), which is visually similar but smaller and positioned differently than the mathematical degree symbol. Likewise, Option + 0 produces the masculine ordinal indicator (º), used in languages like Spanish. For scientific accuracy, always use the Shift + Option + 8 combination.
The Character Viewer
If you prefer a mouse-driven interface or need related symbols (such as the Celsius or Fahrenheit units), the Character Viewer is the tool of choice.
- Go to Edit > Emoji & Symbols in any application menu, or use the shortcut Control + Command + Space.
- Type "degree" in the search bar.
- The viewer will display the standard degree sign (°) alongside combined units like ℃ and ℉.
- Double-click the desired symbol to insert it into the active text field.
Input Methods for Mobile Devices (iOS and Android)
Typing special characters on touchscreens requires a different tactile approach. Both Apple’s iOS and Google’s Android keyboards hide the degree symbol beneath the standard number keys to save screen real estate.
iPhone and iPad (iOS)
On an iPhone or iPad:
- Tap the text area to bring up the keyboard.
- Tap the 123 button in the bottom-left corner to switch to the numeric layout.
- Locate the 0 (zero) key.
- Press and hold the 0 key. A small bubble will appear above your finger showing the degree symbol (°).
- Slide your finger onto the degree symbol and release.
Android Devices (Gboard and Samsung Keyboard)
The process on Android is nearly identical, though it may vary slightly depending on whether you use the default Gboard or a manufacturer-specific keyboard like Samsung’s.
- Open the keyboard and tap the ?123 or !#1 button to access numbers and symbols.
- Long-press the 0 (zero) key. On some Android versions, you may need to tap the secondary symbols button (often labeled =<) to find the degree sign.
- Select the symbol from the pop-up.
For high-frequency users, both platforms support "Text Replacement" (iOS) or "Personal Dictionary" (Android). You can set a shortcut such as "deg" to automatically expand into the "°" symbol whenever you type it.
Inserting Degree Symbols in Microsoft Office
Microsoft Word, Excel, and PowerPoint have unique internal logic for symbols that can sometimes override or supplement system-wide shortcuts.
Microsoft Word Specific Shortcuts
Word features a unique "sequence shortcut" that many power users find faster than the Alt code:
- Press Ctrl + Shift + @ (which is effectively Ctrl + Shift + 2).
- Release the keys.
- Press the Spacebar.
Word also includes an Insert Symbol menu:
- Go to the Insert tab on the Ribbon.
- Click Symbol on the far right, then select More Symbols.
- In the character grid, find the degree sign. It is usually located in the "Latin-1 Supplement" subset.
- You can click the Shortcut Key button in this menu to assign a custom key combination if the default ones are inconvenient.
Excel and Google Sheets Formulas
In spreadsheet applications, you might need the degree symbol to appear dynamically based on data in other cells.
- The CHAR Function: In Excel or Google Sheets, the formula
=CHAR(176)will return the degree symbol. - Concatenation: To combine a number in cell A1 with a degree symbol and the letter C, use:
=A1 & CHAR(176) & "C". This results in "25°C" if the value in A1 is 25. - Custom Number Formatting: If you want a column of numbers to display the degree symbol without changing the actual cell value (so you can still perform calculations), right-click the cells, choose Format Cells, go to Custom, and type
0°or0"°C".
Technical and Developer Implementations
For web developers, programmers, and technical writers using LaTeX, the keyboard shortcut is often less important than the character code itself.
HTML and Web Entities
When coding for the web, it is best practice to use HTML entities to ensure the symbol renders correctly across all browsers and character encodings.
- Named Entity:
° - Decimal Entity:
° - Hexadecimal Entity:
°
Example usage in HTML: <p>The boiling point is 100°C.</p>
Unicode and LaTeX
In environments that support Unicode hex input:
- Unicode Code Point:
U+00B0
In LaTeX, which is the gold standard for academic and scientific publishing, the degree symbol is handled within math mode or via specific packages:
- Using the
gensymbpackage:\degree - Standard math mode:
^\circ(e.g.,$90^\circ$) - Using the
siunitxpackage (highly recommended for precision):\ang{90}or\SI{25}{\celsius}.
Typographic Standards and Style Guide Considerations
Using the symbol correctly involves more than just finding it on the keyboard; it also requires adhering to international typographic standards.
To Space or Not to Space?
One of the most debated topics in technical writing is whether a space should exist between the number and the degree symbol.
- International System of Units (SI): The SI standard (and the NIST) dictates that there should be a space between the number and the unit of temperature. Example: 25 °C.
- U.S. Style Guides (APA, Chicago): Many American style guides prefer no space between the number and the symbol. Example: 72°F.
- Angles and Coordinates: For geometry and geography, there is universal agreement that no space should be used. Example: A 90° angle or 40°N latitude.
Common Mistakes: Degree vs. Ordinal Indicator
A frequent error in professional documents is the substitution of the degree sign (°) with the masculine ordinal indicator (º) or a superscript "o".
- Degree Sign (U+00B0): Specifically designed for angles and temperature. It is a perfect circle.
- Masculine Ordinal (U+00BA): Used in Romance languages (e.g., 1º for "primero"). It often has a small underline or an oval shape depending on the font.
- Superscript "o": This is a letter, not a mathematical symbol. It will cause errors in screen readers used by the visually impaired and will break mathematical formulas in software like Excel.
Troubleshooting: Why is my shortcut not working?
If you are following the steps above but the symbol is not appearing, consider these common environmental factors:
- Num Lock is Off: On Windows, Alt codes absolutely require Num Lock to be active. Some modern laptops do not have an indicator light for this; try toggling the key and attempting the code again.
- Function (Fn) Key Interference: Many laptops require you to hold the Fn key to access the "hidden" numeric keypad overlaid on the right side of the letter keys (M, J, K, L, U, I, O). In this case, the shortcut becomes Alt + Fn + [numeric code].
- Application-Specific Overrides: Some specialized software (like CAD tools or video editors) use Alt or Option keys for tool shortcuts, which may block the system-wide symbol input. In these cases, using the Character Map or Copy/Paste is the only solution.
- Font Limitations: While the degree symbol is part of the basic Latin-1 character set, some highly stylized or "icon-only" fonts may not include it. Switching to a standard font like Calibri or Roboto often resolves visibility issues.
Summary of Input Methods
| Platform | Primary Method | Shortcut / Action |
|---|---|---|
| Windows | Alt Code | Alt + 0176 (Numpad) |
| Windows | Visual Panel | Win + . (Period) |
| macOS | Native Shortcut | Shift + Option + 8 |
| iOS | Long Press | Hold '0' on numeric keyboard |
| Android | Long Press | Hold '0' or check '=<' menu |
| Word | Word Shortcut | Ctrl + Shift + @, then Space |
| Excel | Formula | =CHAR(176) |
| HTML | Entity | ° |
Frequently Asked Questions
Is there a degree symbol key on a Chromebook? No, Chromebooks do not have a dedicated key. You must use the Unicode entry method: press Ctrl + Shift + U, type 00B0, and then press Enter.
How do I type the degree symbol on a laptop without a number pad? The most efficient way on a Windows laptop is to press Windows Key + . (period) and type "degree" to find the symbol. On a Mac laptop, use Shift + Option + 8.
What is the difference between ° and º? The first (°) is the degree symbol for math and temperature. The second (º) is a masculine ordinal indicator used in languages like Spanish and Portuguese to indicate "first" or "second." They are distinct characters in Unicode and are not interchangeable in professional writing.
Can I create my own shortcut for the degree sign? Yes. In Microsoft Word, go to Insert > Symbol > More Symbols, select the degree sign, and click Shortcut Key. On macOS, go to System Settings > Keyboard > Text Replacements to create a custom trigger like "deg".
By mastering these shortcuts and understanding the typographic nuances of the degree symbol, you ensure that your documents are not only technically accurate but also professionally formatted across all digital platforms.
-
Topic: SPECIAL CHARACTERS YOUR GUIDE TO USING EDESIGNhttps://www.hjhelpcenter.com/wp-content/uploads/KnowledgeBase/2023-Special-Characters-1.pdf
-
Topic: How to Type the Degree Symbol (°) on Any Devicehttps://howtotypeanything.com/degree-symbol-keyboard/
-
Topic: How to Type a Degree Symbol (°) — Keyboard Shortcuts for Mac, Windows & Linuxhttps://howtotype.org/degree-symbol/