Skip to calculator

Unit converters · Durations and angles

Convert an angle (degrees, radians, gradians)

Every angle routes through the radian, the SI unit. A half turn is π radians, 180 degrees or 200 gradians: three ways of describing the same opening.

Calculate

Angle to convert.

Starting unit. Default: degree.

Target unit. Default: radian.

How the calculator works

The value is converted into radians, then into the target unit. The degree divides the turn into 360, the gradian into 400, and a turn is 2π radians. The gradian, inherited from the revolutionary metric system, is still used in French surveying, where a right angle conveniently equals 100 gradians.

Formula and method

θ(rad) = x × kfrom ; y = θ(rad) / kto

k is the unit's factor to the radian.

π rad = 180°

The fundamental relation of trigonometry.

1 turn = 2π rad = 360° = 400 gon

Three ways of splitting the same full turn.

The radian is the SI unit of plane angle: the angle subtending an arc equal in length to the radius. Trigonometric functions in programming languages, JavaScript included, expect radians. The sexagesimal degree comes from Babylonian tradition; the gradian from the metric system.

Worked example

180 degrees in radians

x = 180, from deg to rad.

  1. 180 × π/180 = π.
  2. π ≈ 3.141593.

π radians, about 3.1416.

1 turn in gradians

x = 1, from turn to grad.

  1. 1 turn = 2π rad.
  2. 2π / (π/200) = 400.

400 gradians.

Input notes

Value
The angle alone, without the unit. Negative values are accepted.
From
Starting unit. The default is the degree.
To
Target unit. The default is the radian, expected by trigonometric functions.

Assumptions and limits

Assumptions

  • 1 turn = 2π radians = 360 degrees = 400 gradians.
  • π is the JavaScript constant Math.PI.
  • Angles are not wrapped into 0–360: 720° stays 720°.

Limits

  • No degrees-minutes-seconds notation (45° 30′ 15″).
  • No normalisation modulo a turn.
  • Solid angles, measured in steradians, are out of scope.

How to read the result

A right angle is 90 degrees, π/2 radians or 100 gradians. If a trigonometric calculation returns something unexpected, check the unit first: most libraries expect radians while problems are usually stated in degrees. In surveying, the gradian avoids fractions since a quarter turn comes out round.

Common mistakes

  • Passing degrees to a sine function that expects radians.

    sin(30) in radians is not 0.5. Convert first: 30° = π/6 rad.

  • Confusing gradians with degrees.

    100 gradians is 90 degrees, not 100 degrees.

  • Treating 45° 30′ as 45.30°.

    30 minutes of arc is half a degree, so 45.5°.

Comparison

The same angle in four units
AngleDegreesRadiansGradians
Quarter turn90π/2100
Half turn180π200
Three quarters2703π/2300
Full turn360400

Methodology · Sources

Related calculations

Frequently asked questions

How many radians in 180 degrees?

Exactly π radians.

By definition a half turn is π radians. Numerically that is about 3.141593, the value of π shown to six decimals.

What is the gradian for?

Surveying.

The gradian divides the turn into 400, so a right angle is 100. That roundness simplifies field calculations, and surveyors in France still use it.

Must I convert before using a sine?

Yes, into radians.

Standard trigonometric functions expect radians. An angle in degrees must be multiplied by π/180 before being passed to sin, cos or tan.

Author and update

Written by Rédaction HexaCalc (editorial team). Content last updated: August 25, 2026. No third-party medical or financial review is claimed.

Solving a right triangle?

The Pythagorean theorem finds the hypotenuse or a missing leg.

Pythagorean theorem

Category: Unit converters