Angle Converter
Converters · Added 15 August 2026
Convert angles between degrees, radians, gradians, full turns and the fine subdivisions used in astronomy and surveying. Factors here are exact multiples of π rather than rounded decimals, so a full turn converts to precisely 360 degrees and back again without drift.
Result
1 ° in radian
0.0174532925 rad
1 ° = 0.0174532925 rad
The same value in every unit
- Degree (°)
- 1
- Radian (rad)
- 0.0174532925
- Gradian (gon) (gon)
- 1.11111111
- Turn (revolution) (rev)
- 0.00277777778
- Milliradian (mrad)
- 17.4532925
- Arcminute (′)
- 60
- Arcsecond (″)
- 3,600
- Mil (NATO, 6400 per turn) (mil)
- 17.7777778
Radians are the natural unit for mathematics — a full turn is 2π, and the calculus of sine and cosine only comes out cleanly in them. Degrees survive because 360 divides evenly by so many numbers, which is convenient for navigation and construction.
How to use the angle converter
- 1Enter the angle you want to convert.
- 2Choose the unit it is in and the unit you want.
- 3The reference table shows the same angle in every unit at once.
- 4For trigonometry in code, remember most languages expect radians.
- 5Use the swap button to reverse the direction.
Examples
A right angle
- Input
- 90°
- Result
- 1.5708 rad · 100 gon · 0.25 turns
Gradians were designed so a right angle is exactly 100 — the metric system's attempt at angles.
Astronomical precision
- Input
- 1 arcsecond
- Result
- 0.000278° · 4.848 µrad
An arcsecond is 1/3600 of a degree, roughly the width of a coin seen from four kilometres away.
Programming a rotation
- Input
- π radians
- Result
- 180° · 0.5 turns
Enter 3.14159265 to see this. Most programming languages take radians, not degrees.
About the angle converter
Three systems, three different design goals
Degrees were built for divisibility. With 360 of them in a circle, most fractions people actually need come out as whole numbers, which matters when you are working with a protractor, a sextant or a mental estimate rather than a calculator. Navigation and construction still run on degrees for exactly this reason.
Radians were built for mathematics. Defining the angle by the arc it cuts, in units of the radius, makes angle a pure ratio of two lengths — which is why radians are technically dimensionless. Every formula relating angles to arc lengths, angular velocities or oscillations simplifies in radians and acquires clutter in degrees.
Gradians were built for decimalisation, alongside the metre and the kilogram, and are the one part of that reform that largely failed. Their survival in European surveying is a reminder that unit choice is often settled by installed practice rather than by merit.
Where angle conversion goes wrong
The most frequent error in software is passing degrees to a function expecting radians. Nearly every programming language's sin, cos and tan take radians, and passing 90 instead of 1.5708 produces a plausible-looking number rather than an error — sin(90) in radians is about 0.894, which is not obviously wrong until the results are plotted. Spreadsheets are the usual exception, and even there the RADIANS function exists because the confusion is so common.
The second is dropping precision in the fine units. Arcminutes and arcseconds subdivide a degree by 60 and 3600, and coordinates written in degrees-minutes-seconds convert to decimal degrees with long fractional parts. Rounding that decimal too early moves a map position noticeably: a thousandth of a degree of latitude is about 111 metres.
The third is assuming military mils are milliradians. They are close but not equal — 6400 per turn against 6283.19 — and the difference is roughly 1.8%. At a thousand metres that is eighteen metres of error, which is more than enough to matter in the applications where mils are used at all.
Frequently asked questions
Why does mathematics use radians rather than degrees?
Where did 360 degrees come from?
What is a gradian for?
What is a NATO mil?
Related tools
Frequency Converter
Converters
Convert hertz, kilohertz, megahertz, gigahertz, RPM, rad/s and BPM.
Torque Converter
Converters
Convert newton metres, pound-force feet, kilogram-force metres and inch-pounds.
Length Converter
Converters
Convert between millimetres, metres, kilometres, inches, feet, yards and miles.