ZenovayTools

Angle Converter

Convert angles between degrees, radians, gradians, and turns. Includes a unit circle reference and common angle values.

Convert Angle

Common Angles

AngleDegreesRadiansGradiansTurns
0° — Zero0000
30° — π/6301π/6 ≈ 0.52359933.3333330.083333
45° — π/4451π/4 ≈ 0.785398500.125
60° — π/3601π/3 ≈ 1.04719866.6666670.166667
90° — Right angle901π/2 ≈ 1.5707961000.25
120° — 2π/31202π/3 ≈ 2.094395133.333330.333333
135° — 3π/41353π/4 ≈ 2.3561941500.375
150° — 5π/61505π/6 ≈ 2.617994166.666670.416667
180° — π (straight)180π ≈ 3.1415932000.5
270° — 3π/22703π/2 ≈ 4.7123893000.75
360° — 2π (full circle)3602π ≈ 6.2831854001

How to Use Angle Converter

  1. 1Enter an angle in any unit.
  2. 2See all four units updated instantly.
  3. 3Browse the reference chart for common angles.
  4. 4Copy any converted value.
Zenovay

Privacy-first analytics for your website

Understand your visitors without invasive tracking. GDPR compliant, lightweight, and powerful.

Explore Zenovay

Frequently Asked Questions

What is a radian?
A radian is the SI unit of angle. One radian is the angle subtended at the center of a circle by an arc equal in length to the radius. A full circle = 2π radians = 360°. Since π ≈ 3.14159, 1 radian ≈ 57.296°. Radians are used in mathematics, physics, and programming — trigonometric functions (Math.sin, Math.cos) in most programming languages expect radians, not degrees.
What are gradians?
A gradian (grad, gon, or grade) divides a right angle into 100 parts, so a full circle = 400 gradians. 1 gradian = 0.9° = π/200 radians. Gradians were proposed during the French Revolutionary metric system as a decimal alternative to degrees. They are used in surveying and some European countries. A right angle is exactly 100 gradians, making right-angle arithmetic simpler.
How do I convert degrees to radians in code?
radians = degrees × π / 180. In JavaScript: const rad = degrees * Math.PI / 180. In Python: import math; rad = math.radians(degrees). To convert back: degrees = radians × 180 / π. In JavaScript: const deg = radians * 180 / Math.PI. Always convert before passing to trigonometric functions — most APIs accept radians.
What is a "turn" as an angle unit?
A turn (revolution, full rotation) is 360°, 2π radians, or 400 gradians. CSS uses turns for animation: transform: rotate(0.5turn) = rotate(180deg). The unit makes fraction-based angles intuitive: 1/4 turn = 90°, 1/3 turn ≈ 120°, 1/6 turn = 60°. JavaScript Math functions do not natively support turns — convert to radians first.
What are the common angles in trigonometry?
0° (0 rad): sin=0, cos=1. 30° (π/6 rad): sin=0.5, cos=√3/2. 45° (π/4 rad): sin=cos=√2/2. 60° (π/3 rad): sin=√3/2, cos=0.5. 90° (π/2 rad): sin=1, cos=0. 120° (2π/3 rad): sin=√3/2, cos=−0.5. 180° (π rad): sin=0, cos=−1. 270° (3π/2 rad): sin=−1, cos=0. 360° (2π rad): sin=0, cos=1.