Decimal to Percent

Enter a decimal number and convert it to a percentage value. Results appear instantly in your browser.

Decimal
Enter a value like 0.75 or 1.5
Percent
Result will appear here
Quick Reference
0.011%
0.110%
0.2525%
0.550%
0.7575%
1100%
1.5150%
2200%

Decimal to Percent Converter

This tool converts a decimal number into its percentage equivalent. It is useful for financial calculations, statistics, grade calculations, or any situation where you need to express a decimal as a percentage.

The conversion is simple and runs entirely in your browser: multiply the decimal by 100 to get the percentage value.

How to use

  1. Enter a decimal number in the input field (e.g. 0.75 or 1.5).
  2. Click Convert to see the percentage result.
  3. Use Copy to copy the result to your clipboard, or Clear to reset.

Formula

The conversion formula is: percent = decimal * 100. For example, 0.75 becomes 0.75 * 100 = 75%.

Example

Decimal:  0.75
Percent:  75%

Decimal:  0.5
Percent:  50%

Decimal:  1.5
Percent:  150%

MCP integration

MCP (Model Context Protocol) lets AI agents and apps discover and run Coding.Tools utilities for repeatable conversions, formatting, hashing, and generation workflows.

MCP tool name: decimal-to-percent

MCP endpoint: https://coding.tools/mcp

Call tools/list first. Each tool entry includes inputSchema, outputSchema, and examples so an AI agent or client can build valid arguments without guessing.

For tools/call, read result.content[0].text for the display value and result.structuredContent for machine parsing. Tool-level failures return isError: true; protocol failures return a JSON-RPC error.

Example tools/call request:

curl -s https://coding.tools/mcp \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -H "MCP-Protocol-Version: 2025-06-18" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"decimal-to-percent","arguments":{"input":"0.185"}}}'

Most text and data tools accept an input string plus optional options. Browser-only image tools are listed for discovery and return a web UI link when they need browser image APIs.