Angle Converter — Degrees, Radians, Gradians

Free online angle converter. Convert degrees to radians, gradians, arcminutes, arcseconds, and turns instantly — for trigonometry, engineering, CNC machining, and navigation. Accurate, instant, no sign-up.

📐

Angle Converter

degrees • radians • gradians • arcmin • arcsec

📐
Enter an angle value to convert

How to Use the Angle Converter

  1. Enter an angle value — e.g. 90 for a right angle, or 3.14159 for π radians.
  2. Select From unit — degrees (everyday/navigation), radians (calculus/physics), gradians (surveying), arcmin/arcsec (astronomy).
  3. Read the result — degrees, radians, gradians, and the exact π-form all show at once.
  4. For trig functions — most calculators and programming languages use radians by default. Convert degrees → radians first.

Benefits

📚

Trigonometry & Calculus

Convert degrees to radians for sin, cos, tan in calculus, where radians are required for derivatives and series.

💻

Programming & CNC

JavaScript, Python, and C use radians in Math.sin(). CNC and CAD often use degrees. Convert to avoid errors.

🔭

Astronomy & Optics

Telescopes and star positions use arcminutes and arcseconds — 1 degree = 60 arcmin = 3,600 arcsec.

Angle Conversion Guide — Degrees, Radians, Gradians

Angles can be measured in several units, and the most common conversion is between degrees and radians. A full circle is 360 degrees, 2π radians (approximately 6.2832), 400 gradians, or 1 turn. The key relationship: 1 radian = 180/π ≈ 57.2958 degrees, and 1 degree = π/180 ≈ 0.01745 radians. Degrees are intuitive for everyday use (a right angle is 90°), but radians are the natural unit in higher mathematics because they make calculus formulas clean — the derivative of sin(x) is cos(x) only when x is in radians.

Common angles convert to memorable radian values: 30° = π/6, 45° = π/4, 60° = π/3, 90° = π/2, 180° = π, and 360° = 2π. Gradians (also called gons) divide a right angle into 100 parts and are used in surveying and some European engineering. For precise work in astronomy and navigation, degrees are subdivided into arcminutes (1° = 60′) and arcseconds (1′ = 60″), so 1 degree = 3,600 arcseconds. Milliradians (mrad) are used in ballistics and optics for fine angular adjustments.

📐

Common Angle Conversions

30° = 0.5236 rad = π/6. 45° = 0.7854 rad = π/4. 60° = 1.0472 rad = π/3. 90° = 1.5708 rad = π/2. 180° = 3.1416 rad = π.

🔗

Why Radians in Calculus

Radians are dimensionless (arc length ÷ radius), making trig derivatives and Taylor series work cleanly. d/dx sin(x) = cos(x) requires radians. This is why programming Math functions use radians.

🌍

Surveying & Gradians

1 gradian = 1/400 of a circle = 0.9°. A right angle = 100 gon. Used in continental European surveying and some calculators (GRAD mode).

Astronomy Precision

1° = 60 arcmin = 3,600 arcsec. The full Moon spans ~30 arcmin. Hubble resolves ~0.05 arcsec. Star coordinates use arcsec precision.

Formula & Logic

The degree is a historical accident that has outlived every attempt to replace it: 360 comes from Babylonian base-60 arithmetic and the convenient fact that 360 divides evenly by 24 different numbers. The radian, by contrast, is the mathematically natural unit — one radian is the angle subtending an arc equal to the circle's radius, so a full turn is exactly 2π radians. That definition is what makes calculus work cleanly on trigonometric functions, and it is why every programming language's sin() and cos() expect radians. Passing degrees to them is one of the most common numerical bugs there is.

radians = degrees × π ÷ 180degrees = radians × 180 ÷ πgradians = degrees × 10 ÷ 91 degree = 60 arcminutes = 3,600 arcseconds

where:

radian
arc length equal to the radius; a full circle is 2π ≈ 6.2832 rad
gradian
a metric attempt: 400 to a circle, 100 to a right angle; survives in surveying
arcminute
1/60 of a degree, used in astronomy and navigation

Assumptions: Trigonometric functions in virtually every programming language take radians. Spreadsheet formulas do too — Excel's SIN() needs RADIANS() wrapped around a degree value.

Step-by-Step Example: 90 Degrees in Radians and Gradians

Convert a right angle into the two alternative systems.

  • Angle90 degrees
  1. To radians: 90 × π ÷ 180 = π ÷ 2 = 1.570796 rad.
  2. To gradians: 90 × 10 ÷ 9 = 100 grad — a right angle is 100 grad by design.
  3. To arcminutes: 90 × 60 = 5,400 arcminutes.
  4. Verify the radian result: a quarter of a full turn is 2π ÷ 4 = 1.570796. It agrees.
  5. Test the bug: sin(90) in radians returns 0.894, not 1 — the classic degrees-into-a-radian-function error.
  6. Correct it: sin(1.570796) = 1, as expected for a right angle.

Result90° = 1.5708 radians = 100 gradians = 5,400 arcminutes

The useful constant is 1 radian = 57.29578°. If a trigonometric result looks plausible but wrong, checking the angle mode is almost always the first thing to try — the failure is silent because both inputs are valid numbers.

Angle Conversion FAQ

Multiply degrees by π/180 (≈ 0.0174533). So 90° × π/180 = π/2 ≈ 1.5708 radians. 180° = π radians. To go the other way, multiply radians by 180/π (≈ 57.2958). This converter does it instantly and also shows the exact π-fraction form.
A full circle = 2π radians ≈ 6.28319 radians = 360 degrees. A half circle = π radians = 180°. A quarter circle (right angle) = π/2 radians = 90°. Radians measure the arc length divided by the radius, so one full revolution traces an arc of 2πr around a circle of radius r.
A gradian (also called a gon or grade) divides a right angle into 100 equal parts, so a full circle = 400 gradians and 1 gradian = 0.9 degrees. It's used in surveying and some European engineering because it simplifies percentage-grade slope calculations. Most scientific calculators have a GRAD mode alongside DEG and RAD.
Functions like Math.sin(), Math.cos() in JavaScript, Python, Java, and C all expect angles in radians, not degrees. This is because radians are the mathematically natural unit for trigonometric functions and their derivatives. If you have an angle in degrees, convert first: radians = degrees × Math.PI / 180. Forgetting this is one of the most common bugs in graphics and game code.

Related Converters

✔ Written & reviewed by Dr Sam — 20+ yrs in management & research leadership📅 Last updated May 2026📚 Sources: NIST & BIPM SI unit definitions📑 How we build & check these