This would be a great addition to Wolfram|Alpha's dataset. You may want to consider suggesting it in Wolfram|Alpha's feedback form at the bottom of the search results page.
If Wolfram|Alpha doesn't give the solution, you may need to use Mathematica and write out some calculations. This is how I would do that.
(* Get a geographic polygon of Hunan Provence*)
poly = AdministrativeDivisionData[Entity["AdministrativeDivision", {"Hunan", "China"}], "Polygon"]
(*Break the points of the border polygon into pairs*)
Partition[#, 2, 1] &@poly[[1, 1, 1]]
(*Calculate the GeoDistance between the pairs*)
Apply[GeoDistance, #] & /@ Partition[#, 2, 1] &@poly[[1, 1, 1]]]
(*Add then all together with Total*)
Total[
Apply[GeoDistance, #] & /@ Partition[#, 2, 1] &@poly[[1, 1, 1]]
]
The result I get from this is that border is roughly 1909.72 Miles long.