freeCodeCamp/guide/english/mathematics/conversion-of-temperature-c.../index.md

21 lines
976 B
Markdown
Raw Normal View History

2018-10-12 19:37:13 +00:00
---
title: Conversion of Temperature Celsius to Fahrenheit
---
## Conversion of Temperature Celsius to Fahrenheit
<!-- The article goes here, in GitHub-flavored Markdown. Feel free to add YouTube videos, images, and CodePen/JSBin embeds -->
The following formula provides conversion from Temperature Celsius to Fahrenheit:
<span class="texhtml">T<sub>Fahrenheit</sub> = T<sub>Celsius</sub> * 9 / 5 + 32</span>
Thus, <span class="texhtml">0<sup>o</sup>C = 32<sup>o</sup>F</span> and <span class="texhtml">100<sup>o</sup>C = 212<sup>o</sup>F</span>.
The conversion from Temperature Fahrenheit to Celsius is as follows:
<span class="texhtml">T<sub>Celsius</sub> = 5 / 9 * (T<sub>Fahrenheit</sub> - 32)</span>
#### More Information:
<!-- Please add any articles you think might be helpful to read before writing the article -->
<a href='http://www.rapidtables.com/convert/temperature/how-celsius-to-fahrenheit.htm' target='_blank' rel='nofollow'>Celsius to Fahrenheit</a>