clevr.tools
Toggle menu
Calculate

Angle Converter

Convert between degrees, radians, gradians, and arcseconds.

Navigation

Private by default

Files stay in your browser. Nothing is uploaded unless a tool says otherwise.

1 ° = 0.01745329252 rad

Degrees (°)Radians (rad)
10.01745329252
20.03490658504
50.0872664626
100.1745329252
150.2617993878
200.3490658504
250.436332313
500.872664626
751.308996939
1001.745329252
1502.617993878
2003.490658504
2504.36332313
5008.72664626
1,00017.45329252

☕ This tool is free forever. If it saved you time, buy me a coffee.

Angle Unit Reference

Degrees: 360° in a full circle — the most familiar system. Radians: 2π in a full circle — used in math and programming. Gradians: 400 in a full circle — used in surveying.

DegreesRadiansGradians
30°π/633.33
45°π/450
90°π/2100
180°π200
360°400

When Radians Matter

Trigonometric functions in most programming languages — including JavaScript, Python, C, and Java — expect angles in radians, not degrees. If you pass degrees to Math.sin(), you'll get wrong results.

To convert degrees to radians in code, multiply by π/180:

Math.sin(angle * Math.PI / 180)

This is one of the most common bugs in geometry and physics calculations. Always check whether your library or language expects radians or degrees before plugging in values.

When to use this

You are working through a calculus problem and the textbook gives an angle in degrees, but the trig function on your calculator expects radians. Or you are programming a game engine where rotation functions use radians while your design specs are in degrees. Degrees-to-radians is the most frequently searched angle conversion, and this tool handles it along with gradians, arcminutes, and arcseconds.

Angle conversions come up in mathematics, physics, engineering, surveying, astronomy, and software development. Surveyors often work in degrees-minutes-seconds (DMS) notation and need to convert to decimal degrees for GPS coordinates. Astronomers use arcseconds to describe tiny angular separations between stars. Programmers converting between coordinate systems need radians for most math libraries.

Good to know

The key formula: radians = degrees x (pi / 180). A full circle is 360 degrees or 2pi radians. So 180° = pi radians, 90° = pi/2, and 45° = pi/4. Memorizing these anchor points covers most common conversions.

Most programming languages use radians. JavaScript's Math.sin(), Python's math.sin(), and virtually every math library expect radians as input. Forgetting to convert from degrees is one of the most common bugs in graphics and game programming.

Gradians are used in surveying. A full circle is 400 gradians (also called gons). This makes right angles exactly 100 gradians, which simplifies certain surveying calculations. You will rarely encounter gradians outside of European surveying contexts.

Quick Reference

DegreesRadiansGradiansContext
00 gradStarting point
30°pi/6 (0.524)33.33 gradCommon trig angle
45°pi/4 (0.785)50 gradDiagonal / 45° angle
60°pi/3 (1.047)66.67 gradEquilateral triangle
90°pi/2 (1.571)100 gradRight angle
120°2pi/3 (2.094)133.33 gradObtuse angle
180°pi (3.142)200 gradStraight line
270°3pi/2 (4.712)300 gradThree-quarter turn
360°2pi (6.283)400 gradFull circle