Angle Converter
MeasurementConvert angle units instantly — degrees, radians, gradians, arcminutes, arcseconds, turns, and milliradians. Essential for maths, navigation, and optics.
| Degrees (°) | 1 |
| Radians (rad) | 0.017453293 |
| Milliradians (mrad) | 17.453293 |
| Gradians / Gon (grad) | 1.1111111 |
| Arcminutes (′) | 60 |
| Arcseconds (″) | 3600 |
| Turns / Revolutions (τ) | 0.0027777778 |
What is a Angle?
An Angle Converter translates angle measurements between the unit systems used in mathematics, surveying, astronomy, navigation, optics, and everyday geometry — degrees, radians, milliradians, gradians, arcminutes, arcseconds, and turns.
An angle describes the rotation between two rays sharing a common endpoint. Despite measuring the same geometric quantity, different disciplines have settled on incompatible units based on the arithmetic that is most natural to their work.
Degrees (360 per full circle) dominate everyday usage because the Babylonian base-60 number system made 360 divisible by many factors. Radians (2π per full circle) are the mathematical standard because they make calculus identities clean — the derivative of sin(x) is cos(x) only when x is in radians. Gradians (400 per full circle) give surveyors a right angle of exactly 100 units for clean decimal arithmetic. Arcminutes and arcseconds subdivide the degree for astronomy and GPS precision. Milliradians are the preferred unit in precision optics and ballistics for intuitive distance-subtension arithmetic.
In India, angle units appear across many practical contexts. Indian school mathematics (CBSE/ICSE) teaches degrees through Class 10, then introduces radians in Class 11–12 for calculus and trigonometry. Engineering and physics courses use radians exclusively. Indian survey documents — particularly older land records — use degrees, minutes, and seconds (DMS format). Solar panel design uses degrees of inclination. ISRO satellite positioning uses arcminutes and arcseconds in orbital mechanics.
This converter handles the full range, including milliradians for technical users and turns for programmers working with rotation-based animation APIs. For rotational rates (how fast an angle changes), see the Frequency Converter.
How to use this Angle calculator
- Select your source unit from the FROM dropdown — e.g.
Degrees (°). - Enter your value — e.g.
45for a 45° angle. - Select your target unit from the TO dropdown — e.g.
Radians (rad). - The result appears instantly — 45° = 0.7854 rad.
- Use ⇅ to swap FROM and TO directions.
- View the reference table to see your angle in all 7 units at once.
- Copy the URL to share a specific conversion.
Formula & Methodology
All units convert to and from degrees using exact multipliers: | Unit | Symbol | Degrees (toBase) | |---|---|---| | Degree | ° | 1 (base) | | Radian | rad | 180/π = 57.29577951… | | Milliradian | mrad | 180/(π × 1000) = 0.05729578… | | Gradian | grad | 0.9 (exact: 360/400) | | Arcminute | ′ | 1/60 = 0.01666… | | Arcsecond | ″ | 1/3600 = 0.000277… | | Turn | τ | 360 (exact) | Conversion formula:Result = Input × (F_from ÷ F_to)Worked example — programming rotation: A UI element needs to be rotated by 270° clockwise. The CSSrotate()function expects degrees, but a custom animation library uses radians.270° × (π/180) = 270 × 0.017453293 = 4.71238898 radPass4.71239to the animation function. Common angle reference table: | Angle | Degrees | Radians | Gradians | |---|---|---|---| | Right angle | 90° | π/2 = 1.5708 | 100 | | Equilateral triangle | 60° | π/3 = 1.0472 | 66.67 | | Isosceles right triangle | 45° | π/4 = 0.7854 | 50 | | Full circle | 360° | 2π = 6.2832 | 400 |