Percent to Decimal
Enter a percentage value and convert it to a decimal number. Results appear instantly in your browser.
75 or 33.5Percent to Decimal Converter
This tool converts a percentage value into its decimal equivalent. It is useful for financial calculations, statistics, scientific formulas, or any math problem that requires converting between percentage and decimal formats.
The conversion is simple and runs entirely in your browser: divide the percentage by 100 to get the decimal value.
How to use
- Enter a percentage value in the input field (e.g.
75or33.5). - Click Convert to see the decimal result.
- Use Copy to copy the result to your clipboard, or Clear to reset.
Formula
The conversion formula is straightforward: decimal = percent / 100. For example, 75% becomes 75 / 100 = 0.75.
Example
Percent: 75% Decimal: 0.75 Percent: 50% Decimal: 0.5 Percent: 33.33% Decimal: 0.3333
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: percent-to-decimal
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":"percent-to-decimal","arguments":{"input":"18.5%"}}}'
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.