Degrees to Radians Converter
Enter a value to instantly convert between angle units.
1 Degree = 0.0175 Radian
Key Formulas
Degree → Radian
rad = ° × 0.0174533Radian → Degree
° = rad × 57.2958Degree → Gradian
grad = ° × 1.11111Gradian → Degree
° = grad × 0.9Formula
radians = degrees × (π ÷ 180)Every programming language's math library — Python's math.sin(), JavaScript's Math.cos(), C's sin() — takes angles in radians. An engineer who models a 30° slope in Excel uses degrees, but feeding that slope into a simulation or a CAD API requires radians. Robotics joint angles are specified in degrees in datasheets but controlled in radians by the firmware. The conversion is the bridge between human-readable angle specs and machine-executable math.
Source: ISO 80000-3:2019 (Quantities and units — Space and time)
Last reviewed: · see our methodology
Frequently Asked Questions
Real-World Examples
A 30° roof pitch — the radian value used in a structural calculation for snow load (force per unit area on a sloped surface).
30 ° = 0.5236 rad
A 45° camera pan angle — the radian argument passed to a 3D rotation matrix in a game engine or animation software.
45 ° = 0.7854 rad
A right-angle servo position — π/2 radians, the target angle sent to a robot arm's joint controller in ROS.
90 ° = 1.5708 rad
A full U-turn — π radians, the value used in a navigation algorithm to reverse the heading of an autonomous vehicle.
180 ° = 3.1416 rad