Percent to Decimal Converter
Convert any percent to a decimal instantly. Free, step-by-step percent-to-decimal calculator with worked examples and reverse decimal-to-percent conversion.
What does "percent" mean?
The word "percent" literally means per hundred — the symbol % is shorthand for /100. So 45% really is the number 45/100, which in decimal form is 0.45. Decimals and percents are two notations for the exact same value.
The formula
The conversion from percent to decimal is one division:
decimal = percent ÷ 100
To go the other way, you multiply by 100. Both directions are exact — no rounding is involved as long as you keep all the digits.
How to convert a percent to a decimal, step by step
Example 1 — 45% → ?
- Divide by 100:
45 ÷ 100 = 0.45. - Drop the
%sign: 0.45.
Example 2 — 5% → ?
- Divide by 100:
5 ÷ 100 = 0.05. - Drop the
%sign: 0.05.
Notice the leading zero — you have to pad the digit so the decimal point can move two places left. Forgetting that pad is the most common mistake.
Example 3 — 250% → ?
- Divide by 100:
250 ÷ 100 = 2.5. - Drop the
%sign: 2.5.
When the percent is above 100, the decimal is above 1. There is no cap — percentages run from -∞ to +∞.
The quick mental trick: move the decimal point left
Dividing by 100 moves the decimal point two places to the left. This is faster than reaching for a calculator:
70% → 0.70→ 0.74% → 0.04→ 0.04127.5% → 1.275→ 1.275
If there are not enough digits to the left, pad with zeros (that is what makes 5% become 0.05, not .5).
0.0 first and then drop the digit in: 7% → 0.07.Percent, decimal, and fraction — three notations for the same number
| Percent | Decimal | Fraction |
|---|---|---|
| 1% | 0.01 | |
| 5% | 0.05 | |
| 10% | 0.1 | |
| 25% | 0.25 | |
| 50% | 0.5 | |
| 75% | 0.75 | |
| 100% | 1 | |
| 150% | 1.5 |
Memorising the rows for 25% and 50% pays off — they appear constantly in grades, discounts, statistics, and probabilities.
Common mistakes
- Forgetting to divide. Writing "45% = 45.0" is a classic slip. The 45 has to shrink to 0.45 before you drop the
%. - Skipping the leading zero.
5%becomes0.05, not0.5. The decimal point moves two places, even when there is only one digit to start with. - Shifting the wrong way. Some people remember "move the decimal" but move it right. Going from percent to decimal always shifts left.
- Capping at 100%. Percents above 100 are real and valid. 250% = 2.5, 1000% = 10.
When you'd use this conversion
- Interest rates and finance. Mortgage and APR rates are quoted as
4.5%but spreadsheets, calculators, and code expect0.045. - Statistics and probability. A 32% chance is
p = 0.32in any probability formula. - Spreadsheets. Excel and Google Sheets cells formatted as percent display
45%but store the value0.45. Knowing the conversion stops you from multiplying twice. - Programming. Most languages have no
%literal — you write0.05, not5%. APIs that return rates almost always use the decimal form.
Frequently asked questions
- How do I convert a percent to a decimal?
- Divide the percent by 100, or move the decimal point two places to the left and drop the "%" sign. For example, 45% becomes 0.45.
- How do I convert a decimal back to a percent?
- Multiply the decimal by 100, or move the decimal point two places to the right. So 0.45 becomes 45%.
- What is 5% as a decimal?
- 5% is 0.05. Move the decimal point two places left (5. → .05) to get 0.05. Notice you need a leading zero to fill the spot.
- What is 100% as a decimal?
- 100% is exactly 1. Any percent at 100 lines up with 1 in decimal form; below 100% becomes less than 1, above 100% becomes greater than 1.
- Can a percent be greater than 100% or negative?
- Yes to both. 250% is 2.5 and -25% is -0.25. Percent values are unbounded — the decimal form simply mirrors that range.
- How is this different from a percentage calculator?
- A percentage calculator usually answers "what is X% of Y". This converter only changes the representation of the same number between percent form and decimal form — the underlying value never changes.