How to Convert Degrees to Radians (2026)
By Rui Barreira · Last updated: 18 June 2026
Degrees and radians are two ways to measure the same thing — an angle. Degrees are familiar from everyday life (a right angle is 90°, a full rotation is 360°). Radians are the natural unit in mathematics and physics: one radian is the angle subtended at the centre of a circle by an arc equal in length to the radius. The conversion between them is exact: 360° = 2π radians.
The Conversion Formula
To convert degrees to radians, multiply by π/180. To convert radians to degrees, multiply by 180/π.
- Degrees → Radians: radians = degrees × (π / 180)
- Radians → Degrees: degrees = radians × (180 / π)
For example, 45° × (π / 180) = π/4 ≈ 0.7854 rad. And π/3 × (180 / π) = 60°.
Common Angle Reference Table
| Degrees | Radians (exact) | Radians (decimal) |
|---|---|---|
| 0° | 0 | 0.0000 |
| 30° | π/6 | 0.5236 |
| 45° | π/4 | 0.7854 |
| 60° | π/3 | 1.0472 |
| 90° | π/2 | 1.5708 |
| 120° | 2π/3 | 2.0944 |
| 180° | π | 3.1416 |
| 270° | 3π/2 | 4.7124 |
| 360° | 2π | 6.2832 |
When Radians Matter
Most programming languages and scientific calculators use radians by default. The trigonometric functions sin(), cos(), and tan() in JavaScript, Python, C, and most other languages all expect radian input. Passing degrees directly produces wrong results — Math.sin(90) in JavaScript does not return 1; Math.sin(Math.PI / 2) does. Radians also simplify calculus: the derivative of sin(x) is cos(x) only when x is in radians. In physics, angular velocity (rad/s) and arc length formulas (s = rθ) require radians throughout.
Use the Angle Converter to convert between degrees, radians, gradians, and turns instantly.
Frequently Asked Questions
- Is this tool free?
- Yes — completely free, no signup required. All processing happens in your browser.
- Does the tool work offline?
- Once loaded, most features work without an internet connection since everything runs client-side.