Angle Converter

Convert degrees, radians, gradians and full turns.

Enter a value to see the conversion.
ReferenceEquivalent

Degrees, radians, and why maths prefers one over the other

Angles are measured in several different units depending on context: degrees are the everyday standard, familiar from protractors and compass headings; radians are the unit calculus and most programming languages use internally because they simplify trigonometric formulas; gradians divide a right angle into 100 units instead of 90, matching the metric system's base-10 logic; and arcminutes and arcseconds subdivide a degree for high-precision fields like astronomy, navigation, and surveying. This tool converts between all of them.

Why radians matter for anyone touching code

If you've ever written a line of code using Math.sin() or Math.cos() in JavaScript, Python, or almost any other programming language, and gotten a confusing result, the likely culprit is that these functions expect radians, not degrees. A full circle is 360° but also exactly 2π radians (about 6.2832), so passing "90" directly into a trigonometric function expecting radians treats it as 90 radians — more than 14 full rotations — rather than a quarter turn. This tool's degree-to-radian conversion is exactly the calculation needed to fix that class of bug: multiply degrees by π/180 to get radians.

Gradians and the metric approach to angles

The gradian (or gon) divides a right angle into 100 equal parts instead of 90, so a full circle is 400 gradians. It was introduced during the same era as the metric system, with the same base-10 logic in mind, and is still used in some surveying and civil engineering contexts, particularly in parts of Europe, even though it never achieved the widespread adoption degrees enjoy.

Arcminutes, arcseconds, and precision fields

One degree splits into 60 arcminutes, and one arcminute splits into 60 arcseconds — the same 60-based subdivision pattern as hours into minutes and seconds. Astronomers use arcseconds to describe incredibly small angular separations between celestial objects as seen from Earth; surveyors and cartographers use them for precise land boundary and coordinate work; and telescope and optics specifications frequently quote angular resolution in arcseconds.

Who uses this tool

Developers debugging trigonometric calculations that mix up degrees and radians, students working through geometry, trigonometry, or physics coursework, surveyors and engineers working with gradian-based equipment or historical European land records, and astronomy hobbyists interpreting telescope specifications or star chart coordinates all find a quick angle converter useful for translating between these systems without re-deriving the formulas each time.

Getting it right

When debugging code, always double-check whether a function or library expects degrees or radians before passing in a value — this single mix-up is one of the most common sources of subtle bugs in graphics, game development, and scientific computing. For everyday navigation and geometry, degrees remain the most intuitive unit, but converting to radians the moment a calculation involves calculus or programming will save time and avoid errors down the line.

A practical debugging habit

If an animation, rotation, or trigonometric calculation in code produces a wildly wrong-looking result, checking whether the function expects degrees or radians is one of the first things worth verifying — this single mismatch accounts for a disproportionate share of "my shape is spinning the wrong way" or "my angle calculation looks nonsensical" bug reports in graphics and game development work.

FAQ

Frequently asked questions

How do I convert degrees to radians?

Multiply the degree value by π/180 (approximately 0.0174533). This converter does that calculation instantly — enter your degree value and select radian as the output unit.

Why do programming languages use radians instead of degrees?

Radians simplify calculus and trigonometric formulas because they relate an angle directly to arc length on a unit circle. Most programming languages' built-in trig functions (sin, cos, tan) expect input in radians, not degrees.

How many degrees are in a full circle?

A full circle is 360 degrees, equal to 2π radians (about 6.2832 radians), 400 gradians, or 21,600 arcminutes.

What is a gradian used for?

The gradian (or gon) divides a right angle into 100 units instead of 90, following metric base-10 logic. It's still used in some surveying and civil engineering contexts, particularly in parts of Europe.

How many arcseconds are in a degree?

There are 3,600 arcseconds in one degree (60 arcminutes × 60 arcseconds). Arcseconds are used in astronomy and surveying for describing very small angular measurements.

Explore every converter

18 free unit conversion tools, all client-side, all in one place.

Browse all tools