freeCodeCamp/guide/english/mathematics/convert-percents-to-fractions/index.md

18 lines
568 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

---
title: Convert Percents to Fractions
---
## Convert Percents to Fractions
To convert percentage to fractions, use the formula below:
#### `x % / 100`
#### Example 1
<pre>25 % = <span class="fraction"><sup>25</sup><sub>100</sub></span> = <span class="fraction"><sup>1</sup><sub>4</sub></span></pre>
#### Example 2
<pre>36 % = <span class="fraction"><sup>36</sup><sub>100</sub></span> = <span class="fraction"><sup>9</sup><sub>25</sub></span></pre>
#### Example 3
<pre>100 % = <span class="fraction"><sup>100</sup><sub>100</sub></span> = 1</pre>