Radians to Degrees Converter

rad

Enter any value — decimal, negative, or greater than 2π

Common values

↔ Switch to Degrees → Radians

Conversion Formula

degrees = radians × (180 / π)

3.141593 rad × (180 / π) = 180°

Degree Value

180°

π rad

From 3.141593 rad

In Gradians

200 gon

Full Rotations

0.5

sin(180°)

0

cos(180°)

-1

Inverse Check

180° × (π / 180) = 3.141593 rad

Angle on the Unit Circle

0π/2π3π/2180°

Common Radian-to-Degree Values

Radians (exact)Radians (decimal)Degrees
000°
π/60.523630°
π/40.785445°
π/31.047260°
π/21.570890°
2π/32.0944120°
3π/42.3562135°
5π/62.618150°
π3.1416180°
3π/24.7124270°
6.2832360°

How to Use This Tool

  1. 1.Type or paste a radian value into the input field — decimals like 1.5708 and negative values both work.
  2. 2.Read the degree result in the blue panel on the right, along with gradians, full rotations, and trig values.
  3. 3.Use the "Common values" buttons (π/6, π/4, π/3, etc.) to jump to standard angles instantly.
  4. 4.Check the unit circle diagram to visualize where your angle sits on the circle.
  5. 5.Click any row in the reference table to load that value into the converter.

Rate this tool

Radians to Degrees: The Complete Conversion Guide with Worked Examples

Converting radians to degreesis one of those skills you'll use hundreds of times if you work with math, physics, or code — and it comes down to a single multiplication. One radian is about 57.3°. π radians is exactly 180°. That's the whole relationship, and everything else follows from it.

Unit circle diagram showing radian measures mapped to their degree equivalents, with labeled arcs at π/6, π/4, π/3, π/2, π, and 2π

This guide walks through the conversion formula, shows you five worked examples with real numbers, and explains why programming languages insist on radians in the first place. If you need the reverse operation, use our degrees to radians converter.

The Radians-to-Degrees Formula

Multiply the radian value by 180/π. That's it.

degrees = radians × (180 / π)

Since 180/π ≈ 57.29577951, you can also think of it as "multiply by roughly 57.3." But for exact results — especially in programming — always use the full constant.

Where Does 180/π Come From?

A full circle is 360° and also 2π radians. Divide both sides by 2π:

  • 360° / 2π = 180/π degrees per radian
  • That's ≈ 57.2958° per radian

The factor 180/π is just the number of degrees packed into a single radian. Its inverse, π/180, converts the other way. These two constants are mirrors of each other, and you only need to remember one — the direction tells you which to use.

Five Worked Examples

Let's run through conversions you'll actually encounter in textbooks and code.

Example 1 — π/2 radians: (π/2) × (180/π) = 180/2 = 90°. A right angle. The π symbols cancel cleanly whenever the input is a fraction of π.

Example 2 — 1 radian: 1 × (180/π) = 180/3.14159… ≈ 57.296°. Bigger than most people expect — it's almost a 60° angle.

Example 3 — 2.5 radians: 2.5 × 57.2958 ≈ 143.24°. An obtuse angle, past the midpoint of a half-turn.

Example 4 — π/6 radians: (π/6) × (180/π) = 180/6 = 30°. One of the "special triangle" angles, alongside 45° and 60°.

Example 5 — 6.2832 radians: 6.2832 × (180/π) ≈ 360.0°. That's 2π — a complete lap around the circle. If your result exceeds 360°, you've gone more than one full rotation.

Radian Reference Chart

Bookmark-worthy quick lookup. These twelve values cover virtually every standard-angle problem.

Radians (exact)Radians (decimal)Degreessincos
0001
π/60.523630°0.50.8660
π/40.785445°0.70710.7071
π/31.047260°0.86600.5
π/21.570890°10
2π/32.0944120°0.8660−0.5
π3.1416180°0−1
3π/24.7124270°−10
6.2832360°01

Notice the pattern: sin and cos swap at complementary angles (30° and 60°), and the signs flip as you cross quadrant boundaries (90°, 180°, 270°).

Radians in Programming Languages

Almost every language's trig functions expect radians. Here's the quick conversion snippet in four common languages:

  • JavaScript: const deg = rad * (180 / Math.PI);
  • Python: deg = math.degrees(rad) — Python has a built-in helper
  • C / C++: double deg = rad * (180.0 / M_PI);
  • Java: double deg = Math.toDegrees(rad);

Python and Java both provide dedicated methods, so you don't need to type 180/π manually. JavaScript and C require the raw formula. Either way, the underlying math is identical.

A surprisingly common bug: passing degrees directly into Math.sin() or Math.cos(). If you write Math.sin(90)in JavaScript expecting 1, you'll get 0.894 instead — because 90 is treated as 90 radians, not 90 degrees. Always convert first.

Three Pitfalls That Trip People Up

1. Confusing the multiplier direction. To go from radians to degrees, multiply by 180/π (≈ 57.296). To go the other way, multiply by π/180 (≈ 0.01745). Mixing these up inverts your result. Quick sanity check: 1 radian should give roughly 57°. If you get 0.017, you used the wrong factor.

2. Using 3.14 instead of π.Rounding π to 3.14 introduces a 0.05% error. For a single conversion that's negligible, but errors compound. After 100 chained operations, you're off by about 5%. Always use your language's full-precision constant — Math.PI, math.pi, or M_PI.

3. Forgetting to normalize. A value like 8π radians is technically valid (four full rotations), but if you need an angle between 0° and 360°, apply modulo: (degrees % 360 + 360) % 360. The double-modulo trick handles negative inputs cleanly.

Degrees or Radians — Which Should You Use?

There's no universal winner. The right unit depends on context:

  • Use degrees for everyday angles — compass bearings, roof pitch, camera rotation, map headings, carpentry cuts. Humans think natively in degrees.
  • Use radians for calculus, physics, signal processing, and any formula involving angular velocity (ω = rad/s). Radians keep derivatives clean and avoid stray constants.
  • Use gradians for European surveying and some civil engineering contexts. A right angle is exactly 100 gon — handy for certain field calculations. Try our degrees to gradians converter if you work in that space.

In practice, most engineers and programmers keep internal calculations in radians and convert to degrees only for display or user input. This pattern minimizes conversion errors and keeps math expressions compact.

A Brief History of the Radian

The concept of measuring angles by arc-length-to-radius ratio dates to the 1700s, but the word "radian" didn't appear in print until 1873. James Thomson — brother of Lord Kelvin — coined it in an exam paper at Queen's University Belfast. Before that, mathematicians simply wrote "circular measure" and everyone understood.

The International Bureau of Weights and Measures (BIPM) classifies the radian as a "dimensionless derived unit" of the SI system. It's technically unitless — a ratio of two lengths — which is why it drops out of equations so gracefully. No other angle unit has that property. Degrees and gradians always carry a dimensional tag that must be managed.

The beauty of radians goes deeper than convenience. Euler's identity — e + 1 = 0 — only works because the exponent is in radians. Swap π for 180 and the equation falls apart. That single fact explains why mathematicians adopted radians three centuries ago and never looked back.

Interested in how angle conversion fits into GPS and mapping? Our DMS to decimal degrees converter handles the degrees-minutes-seconds format that navigation systems rely on.

Marko Sinko
Marko SinkoTechnical Tools Editor

Croatian developer with a Computer Science degree from University of Zagreb and expertise in advanced algorithms. Marko builds and verifies the technical tools, number system converters, and scientific calculators across UnitCalcTools, ensuring mathematical precision and developer-friendly interfaces.

Last updated: April 10, 2026LinkedIn

Frequently Asked Questions

Multiply the radian value by 180/π. For example, π/2 × (180/π) = 90°. This works because a full circle contains 2π radians and 360 degrees, so dividing both by 2π gives 180/π degrees per radian — roughly 57.2958° per radian.
One radian equals approximately 57.2958 degrees. More precisely, 1 rad = 180/π°. That's a wider angle than most people expect — picture a pizza slice where the curved outer edge is the same length as the straight side. Roughly 6.28 radians (2π) make a full 360° rotation.
2π radians equals exactly 360 degrees — one complete rotation around a circle. This is the fundamental relationship between the two units: 2π rad = 360°. Half of that, π radians, is 180°, and a quarter turn (π/2) is 90°.
Radians make calculus formulas cleaner. The derivative of sin(x) equals cos(x) only when x is in radians — with degrees you'd need an extra π/180 factor in every derivative. JavaScript's Math.sin(), Python's math.sin(), and C's sin() all expect radian input. Always convert degrees to radians before passing values to trig functions.
π/4 radians equals 45 degrees. Multiply: (π/4) × (180/π) = 180/4 = 45°. The π symbols cancel out, leaving simple arithmetic. This shortcut works for any fraction of π — just multiply the denominator into 180 and simplify.
Not exactly. π radians equals precisely 180°, but 3.14 is only an approximation of π (which is 3.14159265...). Converting 3.14 radians gives 179.909°, not 180°. For exact results, always use the π symbol or your language's Math.PI constant rather than a rounded decimal.
The six angles you'll use most often: π/6 = 30°, π/4 = 45°, π/3 = 60°, π/2 = 90°, π = 180°, and 2π = 360°. These cover nearly every textbook problem and standard engineering calculation. Memorizing them saves significant time on exams and in daily programming work.
Degrees divide a circle into 360 equal slices — an arbitrary number from ancient Babylon. Radians measure an angle by how much arc it sweeps relative to the circle's radius: 1 radian means the arc length equals the radius. This geometric definition makes radians the natural unit for mathematics, physics, and computer science.

Related Tools