C
CalcFusionHub
ConvertersFinancialHealthMath & EducationEngineeringBusiness♥ Favorites
Home›Calculators›Math & Education›Decimal to Percent Converter
🧮

Decimal to Percent Converter

Convert decimals to percentages and percentages back to decimals, with the underlying rule explained for quick mental math.

Loading…

Related Calculators

🔢
Decimal to Words Calculator
Write a decimal number in words three ways — said aloud digit by digit, as a fraction naming the place value (0.075 is seventy-five thousandths), and in cheque format.
🔬
Scientific Notation Calculator
Free scientific notation converter — turn any number into scientific, E, and engineering notation, and back to decimal.
🔎
Significant Figures Calculator
Free significant figures calculator — count the sig figs in any number and round it to a chosen number of significant figures.
💻
Binary ⇄ Decimal Converter
Convert between binary, octal, decimal, and hexadecimal with a place-value breakdown.
🍳
Cooking Measurement Converter
Free cooking measurement converter — cups, tablespoons, teaspoons, ml and grams for flour, sugar, butter and more.
🎨
Hex to RGB Converter
Convert hex color codes to RGB/HSL, preview the swatch, and check text contrast.
View all Math & Education →
C
CalcFusionHub

Free online calculators and converters for finance, health, math, and everyday life.

calcfusionhub.com

Converters

  • Length Converter
  • Weight Converter
  • Temperature Converter
  • Area Converter
  • Volume Converter
  • Speed Converter
  • View all →

Calculators

  • BMI Calculator
  • Loan Calculator
  • Mortgage Calculator
  • Compound Interest
  • Age Calculator
  • ROI Calculator
  • View all →

Company

  • About
  • For Teachers
  • Contact
  • Privacy Policy
  • Terms of Service
  • ♥ Favorites

© 2026 CalcFusionHub. All rights reserved.

Privacy PolicyTerms of ServiceContact

Results are for informational purposes only. Always verify with a qualified professional.

Enter a valid number.

Why this matters

Percentages are just decimals scaled by 100 — used everywhere from grading and discounts to interest rates and statistics. Mastering the conversion makes mental math with percentages much faster.

Everyday Uses

📊

Reading reports

Flip between 0.157 and 15.7% instantly when moving numbers between spreadsheets and prose.

🎓

Statistics homework

Probabilities come as decimals, answers are wanted as percentages — convert without slip-ups.

💰

Interest rate clarity

Banks write 0.0425 in formulas and 4.25% in ads — make sure you're using the right form.

🧮

Spreadsheet prep

Formulas need decimals while headers show percentages — convert cleanly in either direction.

🏷️

Sale prices

Convert a decimal multiplier into the percentage discount actually being offered.

🏷️

Tips and service charges

Turn a decimal multiplier such as 1.125 into the 12.5% actually being added to a bill.

Frequently Asked Questions

How do you convert a decimal to a percentage?

Multiply the decimal by 100 and add a "%" sign (or equivalently, move the decimal point two places to the right). 0.45 × 100 = 45%; 0.075 × 100 = 7.5%; 1.25 × 100 = 125%. This works because "percent" (from Latin per centum) means "per hundred" — so percent is just the decimal multiplied by the 100-base denominator. Values above 1.0 become percentages above 100% (meaning more than the whole).

How do you convert a percentage back to a decimal?

Divide the percentage by 100 (or move the decimal point two places to the left). 45% ÷ 100 = 0.45; 7.5% = 0.075; 150% = 1.5; 0.5% = 0.005. Common errors: 5% is 0.05, not 0.5 (a factor-of-10 mistake that causes major calculation errors). When multiplying by a percentage in a formula, always convert to decimal first: "increase by 15%" means multiply by 1.15; "decrease by 15%" means multiply by 0.85.

How do percentages work in spreadsheets and programming?

In Excel and Google Sheets, cells formatted as "Percentage" display the underlying decimal multiplied by 100. A cell containing 0.45 shows as 45%. When writing formulas, use the decimal form (=A1*0.15, not =A1*15%). In Python/JavaScript, the % operator is the modulus operator (remainder), not percentage — always divide by 100 manually: tax = price * 0.15. This distinction catches many beginners who write "price * 15%" and get a syntax error or wrong result.

What is percentage increase and decrease, and how is it calculated?

Percentage change = ((New Value − Old Value) ÷ Old Value) × 100%. Increase: price goes from $50 to $65 → ((65−50)÷50) × 100 = 30% increase. Decrease: from $80 to $60 → ((60−80)÷80) × 100 = −25% (a 25% decrease). To apply a percentage increase: New value = Old × (1 + rate). To apply a decrease: New = Old × (1 − rate). A 50% decrease followed by a 50% increase does NOT return to the original: $100 → $50 → $75 (not $100).

What is the difference between percentage points and percent change?

This is one of the most misused distinctions in statistics and journalism. Percentage points are the arithmetic difference between two percentages. Percent change is the relative change. Example: interest rate rises from 2% to 5%. The increase is 3 percentage points (5 − 2 = 3 pp), but a 150% increase relative to the original (3 ÷ 2 × 100 = 150%). "Interest rates doubled" would be incorrect (that would mean rising to 4%); "rates rose 3 percentage points" and "rates rose 150%" are both accurate but describe different things.