How to Insert Degree Symbol in Excel

Complete guide with CHAR functions, formulas, keyboard shortcuts, and professional formatting techniques for Excel spreadsheets

Excel Functions
Alt Codes
Formulas
Temperature

What You'll Learn

CHAR Function Keyboard Shortcuts AutoCorrect Setup Custom Formatting

Quick Reference Guide

Most Common Excel Degree Symbol Methods

Method Formula/Shortcut Best For Speed
CHAR Function
=CHAR(176) Formulas & automation ⚡ Fast
Alt Code
Alt + 0176 Direct typing ⚡ Instant
Symbol Dialog
Insert > Symbol Visual selection 🔄 Medium
AutoCorrect
deg → ° Frequent use 🚀 Fast

Complete Excel Function Reference

Function Formula Result Use Case Version
Basic Degree =CHAR(176) ° Simple degree symbol All versions
Unicode Degree =UNICHAR(176) ° Unicode support Excel 2013+
Celsius =A1&CHAR(176)&"C" 25°C Temperature display All versions
Fahrenheit =B1&CHAR(176)&"F" 77°F Temperature display All versions
Angle =TEXT(C1,"0")&CHAR(176) 45° Angle measurement All versions
Custom Format 0"°" 25° Number formatting All versions

Essential Excel Methods

Keyboard Shortcut

Fastest direct input method

Alt + 0176
⚡ Instant Direct Input No Formula

Works in any Excel cell or text box

1

Enable Num Lock on your keyboard

2

Hold Alt and type 0176

3

Release Alt key - symbol appears instantly

CHAR Function

Dynamic formula method

=CHAR(176)
🔄 Dynamic Universal Portable

Works in all Excel versions

Practical Examples

Temperature: =A1&CHAR(176)&"C"

Angle: =B1&CHAR(176)

Formula: =SIN(RADIANS(C1&CHAR(176)))

Symbol Dialog

Visual symbol selection

Insert > Symbol

AutoCorrect

Automatic replacement

deg → °

Copy-Paste

Universal method

° Copy symbol

Detailed Methods

Method 1: Keyboard Shortcut

The fastest way to insert a degree symbol in Excel is using the Alt key code:

  1. Make sure your Num Lock is on
  2. Click on the cell where you want the degree symbol
  3. Press and hold the Alt key
  4. Type 0176 on the numeric keypad (not the top row numbers)
  5. Release the Alt key
  6. The degree symbol (°) will appear

Note: This method requires a numeric keypad. If you're using a laptop without a numeric keypad, use one of the other methods below.

Method 2: CHAR Function

Excel's CHAR function can generate the degree symbol programmatically:

=CHAR(176)

Returns: °

You can combine this with other text or numbers:

="25"&CHAR(176)&"C"

Returns: 25°C

Or use it with cell references:

=A1&CHAR(176)&"F"

If A1 contains 98, returns: 98°F

Method 3: Symbol Dialog

Use Excel's built-in Symbol dialog box:

  1. Click on the cell where you want the symbol
  2. Go to the Insert tab in the ribbon
  3. Click on Symbol in the Symbols group
  4. In the Symbol dialog, select Latin-1 Supplement from the Subset dropdown
  5. Scroll down and find the degree symbol (°)
  6. Click Insert and then Close

Method 4: Copy and Paste

The simplest method is to copy the symbol from here:

Just click the button above to copy the degree symbol, then paste it into your Excel cell.

Practical Examples

Temperature Display

Here are some common temperature display formulas:

=A1&CHAR(176)&"C"

Displays Celsius temperature with degree symbol

=B1&CHAR(176)&"F"

Displays Fahrenheit temperature with degree symbol

=TEXT(C1,"0")&CHAR(176)

Displays angle measurement with degree symbol

Tips and Tricks

AutoCorrect Shortcut

Set up AutoCorrect to automatically replace text with degree symbols:

  1. Go to File > Options > Proofing
  2. Click AutoCorrect Options
  3. Replace: deg
  4. With: °
  5. Click Add, then OK

Conditional Formatting

Add degree symbols conditionally:

Use custom number formats like 0"°" to display numbers with degree symbols automatically.

Troubleshooting

Common Issues

Alt + 0176 Not Working?

Make sure you're using the numeric keypad, not the top row numbers. Enable Num Lock and try again.

CHAR Function Shows #VALUE! Error?

Your Excel version might use a different character encoding. Try =UNICHAR(176) for newer Excel versions.

Symbol Not Displaying Correctly?

Check that your font supports the degree symbol. Most standard fonts like Arial, Calibri, and Times New Roman work fine.

Best Practices

  • Use CHAR(176) for formulas that need to be portable across different computers
  • Set up AutoCorrect for frequently used degree symbol combinations
  • Use custom number formats for displaying large ranges of numbers with degree symbols
  • Test your spreadsheets on different computers to ensure compatibility