Make it interactive. Drag the slider to rotate the text:
It’s easy to make anything interactive in the Wolfram Language.
Here’s the expression to rotate “sophia”:
Rotate[Style["sophia", 30], 50 \[Degree]]
To make it interactive, wrap the expression with Manipulate, replace the fixed angle 50 with the variable angle, and specify that angle can vary from 0 to 360 (make sure there’s a space between angle and °):
Manipulate[
Rotate[Style["sophia", 30], angle \[Degree]], {angle, 0, 360}]
Manipulate[
Rotate[Style["sophia", 30], angle \[Degree]], {angle, 0, 360}]