Decimal to Percent Converter
Convert any decimal number to a percentage or Fraction to Percent.
How to Convert a Decimal to a Percent
To convert any decimal number to a percentage, multiply it by 100 and append the percent sign (%). This works because "percent" literally means "per hundred" — so you are scaling the decimal value to express it as parts per hundred. Moving the decimal point two places to the right is the same as multiplying by 100. For example, 0.75 becomes 75% and 0.045 becomes 4.5%.
Decimal to Percent Formula
Percentage = Decimal × 100%. This is the inverse of the percent-to-decimal conversion (divide by 100). The multiplication by 100 shifts the decimal point two positions to the right. For negative decimals, the sign carries through: −0.25 × 100 = −25%. For values greater than 1, the percentage exceeds 100%: 1.5 × 100 = 150%.
Worked Example: Convert 0.375 to a Percent
Step 1: Take the decimal value: 0.375. Step 2: Multiply by 100: 0.375 × 100 = 37.5. Step 3: Add the percent sign: 37.5%. Verification: 37.5% means 37.5 out of 100, which equals 37.5/100 = 0.375 ✓. Another example: 0.008 × 100 = 0.8%, which represents less than 1 percent.
Common Decimal to Percent Conversions
0.01 = 1% · 0.05 = 5% · 0.1 = 10% · 0.125 = 12.5% · 0.2 = 20% · 0.25 = 25% · 0.3 = 30% · 0.333 = 33.3% · 0.4 = 40% · 0.5 = 50% · 0.6 = 60% · 0.667 = 66.7% · 0.7 = 70% · 0.75 = 75% · 0.8 = 80% · 0.9 = 90% · 1.0 = 100% · 1.5 = 150% · 2.0 = 200%.
Technical Details
The decimal-to-percent conversion is one of the simplest mathematical operations, but precision matters in practice. This tool preserves up to 10 decimal places to handle values like 0.123456789 = 12.3456789%. In finance, basis points (1 basis point = 0.01% = 0.0001 decimal) require high precision. In science, concentrations are often expressed as percentages: a 0.05 molar solution might be described as 5% concentration. JavaScript's floating-point arithmetic can introduce tiny rounding artifacts (e.g., 0.1 + 0.2 = 0.30000000000000004), so this tool rounds the output to avoid misleading trailing digits.
Frequently Asked Questions
What is 0.5 as a percent? 0.5 × 100 = 50%. How do you convert a percent back to a decimal? Divide by 100. For example, 75% ÷ 100 = 0.75. Can a decimal greater than 1 be a percent? Yes — any decimal above 1.0 converts to a percentage above 100%. For instance, 2.5 = 250%. What does 0.01 mean as a percent? 0.01 × 100 = 1%. This is why "one percent" and "0.01" are interchangeable in calculations. Why multiply by 100? Because "percent" means "per hundred." Multiplying by 100 converts a proportion (0 to 1 scale) into a percentage (0 to 100 scale).