Degrees to Radians Calculator

Convert degrees to radians and vice versa. Includes unit circle visual, trig values, and a 16-row reference table of common angles.

Degrees (°)
180.000000
10,800.0 arcminutes
Radians
3.141593
1.0000π
Turns
0.500000
Full rotations (360° = 1 turn)
Gradians
200.000000
400 gradians = 360°
sin(θ)
0.000000
cos(θ) = -1.000000
tan(θ)
-0.000000
Angle in Q3

Common Angles Reference

DegreesRadianssincostan
0°0010
30°π/61/2√3/2√3/3
45°π/4√2/2√2/21
60°π/3√3/21/2√3
90°π/210
120°2π/3√3/2-1/2-√3
135°3π/4√2/2-√2/2-1
150°5π/61/2-√3/2-√3/3
180°π0-10
210°7π/6-1/2-√3/2√3/3
240°4π/3-√3/2-1/2√3
270°3π/2-10
300°5π/3-√3/21/2-√3
315°7π/4-√2/2√2/2-1
330°11π/6-1/2√3/2-√3/3
360°010
Planning notes, formulas, and examples

About the Degrees to Radians Calculator

The degrees to radians calculator converts angle measurements between the two most common angular units. Enter an angle in degrees to get its radian equivalent (or reverse direction) along with turns, gradians, arcminutes, and trigonometric values.

Radians are the SI unit of angle — one radian is the angle subtended at the center of a circle by an arc equal in length to the radius. There are 2π radians in a full circle (360°), making 1 radian ≈ 57.2958°.

The interactive unit circle shows the angle's position, and the reference table lists all 16 standard angles (every 30° and 45° increment) with their exact trig values. Preset buttons cover the most commonly needed degree and radian values. This helps students and developers verify both numeric outputs and geometric intuition before applying angles in code or equations. It is also useful for checking homework steps, CAD geometry inputs, and graphics transformations that require strict unit consistency.

When This Page Helps

Programming languages, physics equations, and calculus all use radians. If you work with degrees and need to feed a value to sin() or cos(), you must convert first. This calculator also gives trig values and a visual confirmation so you can catch errors before they propagate into larger computations and project deliverables.

How to Use the Inputs

  1. Enter your angle value.
  2. Select direction: Degrees→Radians or Radians→Degrees.
  3. Adjust decimal precision if needed.
  4. Read radians, degrees, turns, gradians, and trig values.
  5. Click a preset for any standard angle.
  6. Check the reference table for exact values.
Formula used
Radians = Degrees × π/180. Degrees = Radians × 180/π. Turns = Degrees/360. Gradians = Degrees × 10/9.

Example Calculation

Result: 180° = π radians = 0.5 turns

180 × π/180 = π ≈ 3.141593. This is a half turn, where sin = 0 and cos = −1.

Tips & Best Practices

  • Multiply degrees by π/180 (≈ 0.01745) for a quick mental conversion.
  • Key angles: 30° = π/6, 45° = π/4, 60° = π/3, 90° = π/2.
  • In JavaScript: Math.PI/180 converts degrees to radians; Math.sin() expects radians.
  • Gradians (gon) are used in surveying — 100 gradians = 90°.
  • Negative angles rotate clockwise: −90° = −π/2 rad.
  • Angles > 360° wrap around the unit circle: 720° = 2 full turns.

Common Degree–Radian Pairs

The most important conversions for trigonometry are multiples of 30° and 45°: 30° = π/6, 45° = π/4, 60° = π/3, 90° = π/2, 180° = π, 270° = 3π/2, 360° = 2π. These correspond to the "special angles" whose sine and cosine have exact algebraic values.

Radians in Programming

Every major language — C, Python, JavaScript, Java — uses radians for trigonometric functions. Convert before calling sin/cos/tan: `angle_rad = angle_deg * Math.PI / 180`. Forgetting this is one of the most common bugs in geometry code.

Beyond Degrees and Radians

Gradians divide a right angle into 100 parts; used in surveying. Turns (revolutions) measure full rotations (1 turn = 360°). Milliradians (mrad) are used in military aiming — 1 mrad subtends ~1 m at 1 km.

Sources & Methodology

Last updated:

Frequently Asked Questions

  • Radians = Degrees × (π/180). Multiply the degree value by approximately 0.01745329. This keeps trigonometric function inputs consistent with most scientific libraries. It is the same conversion used in calculators and programming APIs. You can also write this as degrees times pi divided by 180.