Angle Converter
Convert between degrees, radians and gradians.
Angle Converter
ReadyAngle Converter — Convert Degrees, Radians, Gradians & More
The Angle Converter by Toolsiro converts between 7 angle units with a live visual circle that updates as you type — Degrees, Radians, Gradians, Turns, Arcminutes, Arcseconds, and Milliradians. Click any common angle preset (0°, 30°, 45°, 60°, 90°, 180°, 270°, 360°) to jump instantly to that value, and see the visual representation update in real time.
Angles are fundamental to geometry, trigonometry, navigation, astronomy, engineering, and computer graphics. The diversity of angle units reflects different historical and practical needs — degrees are intuitive for humans, radians are mathematically natural for calculus, gradians divide the right angle into 100 convenient parts, and arcseconds allow astronomers to describe incredibly fine angular separations.
Degrees — The Universal Human Standard
The degree (°) is the most universally understood angle unit, dividing a full circle into 360 equal parts. The choice of 360 dates back to ancient Babylon, whose sexagesimal (base-60) number system made 360 convenient — it has an unusually large number of integer divisors (24 divisors: 1, 2, 3, 4, 5, 6, 8, 9, 10, 12, 15, 18, 20, 24, 30, 36, 40, 45, 60, 72, 90, 120, 180, 360), allowing clean fractions for many practical divisions: ½ circle = 180°, ⅓ = 120°, ¼ = 90°, ⅙ = 60°, ⅛ = 45°.
Degrees are used in navigation (compass bearings), geography (latitude and longitude), meteorology (wind direction), architecture and construction, and everyday context. A right angle is 90°, a straight angle is 180°, and a full rotation is 360°. The degree is subdivided into 60 arcminutes (each equal to 1/60°) and 3,600 arcseconds (each equal to 1/3600°).
Radians — The Mathematical Standard
The radian (rad) is the SI unit of angle measurement and the natural unit of angle in mathematics. One radian is the angle subtended at the center of a circle by an arc equal in length to the radius of the circle. This geometric definition makes radians dimensionless (they are ratios of two lengths) and eliminates the arbitrary factor of 2π that appears when working with degrees in calculus.
A full circle is 2π radians (≈6.2832 rad). A half circle is π radians (≈3.1416 rad). A quarter circle (right angle) is π/2 radians (≈1.5708 rad). These are the standard values you'll see in mathematics textbooks and programming languages — the trigonometric functions sin(), cos(), and tan() in virtually all programming languages expect input in radians, not degrees.
The reason radians are mathematically natural is that the derivative of sin(x) is cos(x) only when x is in radians. If you use degrees, a correction factor of π/180 appears in every derivative, making calculus messier. Similarly, the small angle approximation sin(θ) ≈ θ holds only when θ is in radians.
Gradians — The Decimal Circle
The gradian (grad, also called gon) divides the full circle into 400 equal parts, so a right angle is exactly 100 gradians. Developed during the French Revolution as part of the broader decimalization effort (the same movement that created the metric system), gradians were intended to make angle arithmetic simpler by aligning with the decimal number system.
Gradians are used in surveying and civil engineering in some European countries, particularly in continental Europe. A slope of 1 gradian corresponds to a rise of 1% (one unit rise per 100 units horizontal), which made gradians convenient for slope calculations before calculators became ubiquitous. Modern surveying instruments (theodolites) often have a gradian mode for this reason. Scientific calculators label this "GRAD" mode alongside "DEG" and "RAD."
Turns — The Intuitive Revolution Unit
A turn (also called revolution, cycle, or full angle) is simply one complete rotation — 360°, 2π radians, or 400 gradians. It's the most intuitive unit for counting complete rotations and is particularly useful in mechanics and engineering where you care about how many times something has rotated.
The turn appears in some mathematical contexts where it simplifies formulas — the full circle is 1 turn instead of 360° or 2π radians, making angular frequency expressions cleaner. Some physics textbooks use τ (tau = 2π ≈ 6.2832) as a constant representing the full circle in radians, arguing it simplifies formulas compared to 2π appearing everywhere.
Arcminutes and Arcseconds — Precision Angular Measurement
Arcminutes (′, one sixtieth of a degree) and arcseconds (″, one sixtieth of an arcminute = 1/3600 of a degree) are used for precise angular measurements in astronomy, navigation, and geodesy.
In astronomy, the angular diameter of the Moon as seen from Earth is about 31 arcminutes (0.52°). The angular resolution of the human eye is about 1 arcminute — the smallest detail you can distinguish at any distance. The Hubble Space Telescope can resolve details as small as 0.05 arcseconds. The angular separation between the two components of a binary star might be expressed as a few arcseconds.
In navigation, latitude and longitude are expressed in degrees, arcminutes, and arcseconds (DMS format). The GPS coordinate 40°42'46.0″N means 40 degrees, 42 arcminutes, and 46 arcseconds north latitude. One degree of latitude equals about 111 kilometers; one arcminute equals about 1.85 km (the nautical mile was originally defined as one arcminute of latitude); one arcsecond equals about 31 meters on the Earth's surface.
Milliradians — Military and Ballistics Precision
The milliradian (mrad) is one thousandth of a radian (approximately 0.0573°). It is widely used in military applications, long-range shooting, and artillery because of a convenient approximation: at a distance of 1,000 meters, 1 mrad corresponds to approximately 1 meter of lateral displacement. This makes distance estimation and target adjustment arithmetic straightforward — if a target appears 2 mrad wide in a scope and you know it's 0.5 meters wide, it must be at 250 meters range.
Modern rifle scopes use either mrad (mil) or MOA (minute of angle) for click adjustments. An mrad scope typically has 0.1 mrad click adjustments, meaning each click moves the point of impact by 1 cm at 100 meters, 5 cm at 500 meters, or 10 cm at 1,000 meters. This linear scaling makes long-range calculations intuitive for shooters and military personnel.
Common Angle Values Reference
0° = 0 rad = 0 grad = 0 turn. 30° = π/6 rad ≈ 0.5236 rad = 33.33 grad = 1/12 turn. 45° = π/4 rad ≈ 0.7854 rad = 50 grad = 1/8 turn. 60° = π/3 rad ≈ 1.0472 rad = 66.67 grad = 1/6 turn. 90° = π/2 rad ≈ 1.5708 rad = 100 grad = 1/4 turn. 180° = π rad ≈ 3.1416 rad = 200 grad = 1/2 turn. 270° = 3π/2 rad ≈ 4.7124 rad = 300 grad = 3/4 turn. 360° = 2π rad ≈ 6.2832 rad = 400 grad = 1 turn.
Angles in Programming and Computer Graphics
In programming, the choice of angle unit has significant practical consequences. Standard math libraries in C, Python, JavaScript, Java, and virtually every other language use radians for all trigonometric functions. Passing degrees directly to sin() or cos() without converting will produce completely wrong results — a common beginner mistake. The conversion is: radians = degrees × π / 180, or degrees = radians × 180 / π.
In computer graphics and game development, rotation matrices and quaternions work internally with radians, but user-facing interfaces typically display degrees. 3D modeling software shows angles in degrees because 90°, 45°, and 30° are intuitive; internally, the same values are stored and computed as π/2, π/4, and π/6 radians.
Frequently Asked Questions
Why does math use radians instead of degrees? Radians make calculus formulas clean. The derivative of sin(x) is cos(x) only in radians. The Taylor series for sin(x) = x - x³/6 + x⁵/120... works correctly only in radians. Every time you use degrees in calculus, you need to multiply by π/180, which clutters formulas unnecessarily.
How do I convert degrees to radians? Multiply by π/180 ≈ 0.01745. Or use this tool. 90° × π/180 = π/2 ≈ 1.5708 rad. 180° × π/180 = π ≈ 3.1416 rad. 360° × π/180 = 2π ≈ 6.2832 rad.
What is a gradian and why does my calculator have a GRAD mode? A gradian divides a full circle into 400 parts (right angle = 100 grad). Calculators include GRAD mode for use in surveying and civil engineering, where gradians were historically preferred in Europe. Most users should keep their calculator in DEG mode.
How small is an arcsecond in real-world terms? One arcsecond (1/3600 of a degree) corresponds to about 31 meters on Earth's surface per degree of latitude, about 0.48 km. The Hubble Space Telescope can resolve 0.05 arcseconds — a coin seen from 200 kilometers away.