Angle Converter

Convert angles between degrees, radians, gradians, turns, and arcminutes. Uses the exact formula radians = degrees × π/180.

Radians
1.570796
Primary conversion from °
Degrees
90.000000
90° 0' 0" (DMS)
Radians
1.570796
× π/180 from degrees
Gradians
100.000000
× 400/360 from degrees
Turns
0.250000
÷ 360 from degrees
Milliradians
1,570.796327
× 1000 from radians
Quadrant
On positive Y-axis
Normalized: 90.000000°
Reference Angle
90.000000°
Acute angle to nearest axis
Complementary
0.000000°
90° − angle
Supplementary
90.000000°
180° − angle
Trigonometric Values
sin(θ)
1.000000
sin(90.00°)
cos(θ)
0.000000
cos(90.00°)
tan(θ)
undefined
cos(θ) = 0
Angle on Circle (normalized)
90°
270°
180°
AngleDegreesRadiansGradianssincos
Zero0°0.00000.00.00001.0000
π/630°0.523633.30.50000.8660
π/445°0.785450.00.70710.7071
π/360°1.047266.70.86600.5000
π/2 (Right Angle)90°1.5708100.01.00000.0000
2π/3120°2.0944133.30.8660-0.5000
3π/4135°2.3562150.00.7071-0.7071
5π/6150°2.6180166.70.5000-0.8660
π (Straight)180°3.1416200.00.0000-1.0000
3π/2270°4.7124300.0-1.0000-0.0000
2π (Full)360°6.2832400.0-0.00001.0000
Planning notes, formulas, and examples

About the Angle Converter

The Angle Converter converts between degrees, radians, gradians (gons), turns (revolutions), and arcminutes/arcseconds. Enter an angle in any unit and review the equivalents with precise mathematical accuracy.

Angles are measured in different units depending on the field. Degrees (0–360) are used in everyday geometry, navigation, and engineering. Radians (0–2π) are the mathematical standard used in calculus, physics, and programming. Gradians (0–400) are used in surveying and some European countries. Turns (0–1) represent full revolutions.

The core relationship is: radians = degrees × π/180. Our converter applies this precisely using JavaScript's Math.PI constant for maximum accuracy. It's essential for students, engineers, programmers, and scientists working across different angle conventions.

When This Page Helps

Math libraries use radians, textbooks use degrees, surveyors use gradians. This converter bridges all systems with exact mathematical precision for cross-unit reference.

How to Use the Inputs

  1. Select the angle unit you are converting from.
  2. Enter the angle value.
  3. View the equivalent values in all other angle units.
  4. Use radians for programming and calculus functions.
  5. Use degrees for geometry, navigation, and practical measurements.
Formula used
radians = degrees × π / 180 gradians = degrees × 400 / 360 turns = degrees / 360 arcminutes = degrees × 60 arcseconds = degrees × 3600 1 full circle = 360° = 2π rad = 400 grad = 1 turn

Example Calculation

Result: π/2 rad ≈ 1.5708 rad

90 degrees = 90 × π/180 = π/2 ≈ 1.5708 radians. Also equals 100 gradians, 0.25 turns, 5,400 arcminutes, and 324,000 arcseconds. This is a right angle.

Tips & Best Practices

  • Key values: 0°=0 rad, 30°=π/6, 45°=π/4, 60°=π/3, 90°=π/2, 180°=π, 360°=2π.
  • Most programming languages (JavaScript, Python, C) use radians for trig functions like sin(), cos(), tan().
  • To convert in code: radians = degrees * Math.PI / 180.
  • Gradians divide a right angle into exactly 100, making surveying calculations cleaner.
  • Negative angles and angles > 360° are valid and represent direction or multiple rotations.

Angle Units in Context

Degrees originated in ancient Babylon (base-60 system). Radians were formalized by mathematicians for their elegant properties in calculus. Gradians were introduced during the French Revolution as part of the metric push. Each unit serves its field optimally.

Radians in Programming

JavaScript's Math.sin(), Math.cos(), Math.atan2() all expect radians. Python's math module is the same. Always convert degrees to radians before calling trig functions: Math.sin(degrees * Math.PI / 180). Some libraries provide toRadians() and toDegrees() helpers.

Common Angle Reference Points

0° = start, 30° = π/6, 45° = π/4, 60° = π/3, 90° = π/2 (right angle), 180° = π (straight line), 270° = 3π/2, 360° = 2π (full circle). Memorizing these is essential for trigonometry and physics.

Sources & Methodology

Last updated:

Frequently Asked Questions

  • Multiply the degree value by π/180 (approximately 0.01745). For example, 45° × π/180 = π/4 ≈ 0.7854 radians. To go from radians to degrees, multiply by 180/π.