Cups to mL Converter
Convert cups to milliliters instantly. Essential for baking and international recipes.
Formula: cups × 236.588 = mL
Common Conversions
How to convert cups to milliliters
Converting cups to milliliters is a single multiplication. The formula is cups × 236.588 = mL, which means one cup equals 236.588 mL. Going the other way, one milliliter equals 0.00422676 cups.
The calculator above applies this automatically as you type, but it is worth knowing the arithmetic if you need to sanity-check a figure or work one out without a device to hand.
Worked examples
7 cups to mL: multiply 7 by 236.588, which gives 1,656.116 mL.
45 cups to mL: multiply 45 by 236.588, which gives 10,646.46 mL.
250 cups to mL: multiply 250 by 236.588, which gives 59,147 mL.
Cups to mL conversion table
The values below are calculated with the same function as the converter above, so they agree to the digit. Use it as a quick reference when you need a rough figure without typing anything.
| Cups | Milliliters |
|---|---|
| 1 cups | 236.588 mL |
| 2 cups | 473.176 mL |
| 3 cups | 709.764 mL |
| 4 cups | 946.352 mL |
| 5 cups | 1,182.94 mL |
| 6 cups | 1,419.528 mL |
| 7 cups | 1,656.116 mL |
| 8 cups | 1,892.704 mL |
| 9 cups | 2,129.292 mL |
| 10 cups | 2,365.88 mL |
| 15 cups | 3,548.82 mL |
| 20 cups | 4,731.76 mL |
| 25 cups | 5,914.7 mL |
| 30 cups | 7,097.64 mL |
| 40 cups | 9,463.52 mL |
| 50 cups | 11,829.4 mL |
| 75 cups | 17,744.1 mL |
| 100 cups | 23,658.8 mL |
| Milliliters | Cups |
|---|---|
| 1 mL | 0.00422676 cups |
| 5 mL | 0.0211338 cups |
| 10 mL | 0.0422676 cups |
| 25 mL | 0.105669 cups |
| 50 mL | 0.211338 cups |
| 100 mL | 0.422676 cups |
| 250 mL | 1.0566893 cups |
| 500 mL | 2.1133785 cups |
| 1000 mL | 4.2267571 cups |
What is a cup?
A US customary cup is 8 US fluid ounces, or about 236.6 milliliters. The US legal cup used on nutrition labels is defined as exactly 240 mL, and a metric cup is 250 mL, so three slightly different cups are in circulation.
Where the cup came from
The cup became a standard measure through American home cooking in the late 19th century, when Fannie Farmer popularised level, standardised measurements in recipes rather than vague handfuls and pinches.
Where cups are used today
Cups are the backbone of American recipe writing for both liquids and dry ingredients. They are a poor unit for dry goods because results depend on how the ingredient is packed, which is why serious baking recipes increasingly give grams alongside or instead of cups.
- A US cup is 240 mL on nutrition labels
- A standard mug holds 1.5 to 2 cups
- A cup of flour weighs about 120 to 130 g
What is a milliliter?
A milliliter is one thousandth of a liter, and is exactly equal to one cubic centimeter. Medical and engineering contexts often write cc instead of mL for the same quantity.
Where the milliliter came from
It follows directly from the liter and the metric decimal prefixes. Its equivalence to a cubic centimeter, and to one gram of water, comes from the way the original metric system tied length, volume, and mass together.
Where milliliters are used today
Milliliters are the standard for medicine doses, cooking liquids, cosmetics, and laboratory volumes throughout the metric world. Airline liquid limits are given in milliliters, typically 100 mL per container.
- A teaspoon is about 5 mL
- A shot glass is roughly 44 mL
- A standard can of soda is 330 or 355 mL
When you actually need this conversion
cups belong to the imperial / us customary system and milliliters to the metric (si) system, so this conversion turns up whenever information crosses between countries that measure differently.
Following recipes across systems
American recipes measure liquids in cups and fluid ounces while the rest of the world uses milliliters. Volume conversion is the single most common obstacle to cooking from a recipe written on the other side of an ocean.
Fuel and vehicle running costs
Comparing fuel prices or economy between countries means reconciling gallons and liters, and remembering that US and imperial gallons are not the same. A car rated in miles per gallon in the UK looks more efficient than the same car rated in the US purely because of the unit.
Medicine and dosing
Liquid medication is dosed in milliliters almost everywhere, while household spoons vary enough to matter. Converting to a proper measured volume is a safety issue for children's dosing in particular.
Buying containers and appliances
Fridge capacity, water tanks, aquariums, and drinks are labelled in whichever unit the market expects. Comparing two products sold in different units requires putting them on the same scale first.
Accuracy, precision, and rounding
The factor used here (cups × 236.588 = mL) is derived from an internationally agreed exact definition, so the conversion itself is not an approximation. The results above are shown to about eight significant figures, which is more precision than almost any practical use requires.
The sensible rule is to round the answer to roughly the same precision as the number you started with. If you measured to the nearest cup, an answer carrying six decimal places is not more accurate, it just looks more accurate. For most everyday purposes one or two decimal places is plenty.
Common mistakes to avoid
Converting in the wrong direction
Multiplying when you should divide is by far the most common error, and it is easy to miss because the result is still a number in a believable range. A quick check: since one cup is 236.588 mL, a cup value should get larger when converted.
Using a rounded factor for a long calculation
Rounding the conversion factor before multiplying, then repeating that across many values, compounds the error. Convert with the full factor and round only the final answer.
Assuming every cup is the same
A US customary cup is about 236.6 mL, the US legal cup used on nutrition labels is exactly 240 mL, and a metric cup is 250 mL. This converter uses the US customary cup, which is what American recipes mean.
Converting cups to milliliters in a spreadsheet or in code
A one-off answer is what the calculator above is for. When you have a whole column of figures, or you are writing something that has to do the conversion repeatedly, it is worth putting the formula in the tool you are already working in.
Excel and Google Sheets
With your cup value in cell A1, put this in B1 and fill it down the column:
=A1 * 236.588
Excel also ships a built-in CONVERT function that handles many unit pairs directly, but it does not cover every unit and its unit codes are easy to mistype. An explicit formula like the one above is harder to get wrong and shows its working.
Python
def cups_to_ml(value):
return value * 236.588
print(cups_to_ml(10))JavaScript
const cupsToMl = (value) => value * 236.588; console.log(cupsToMl(10));
Store the factor as a named constant rather than typing 236.588 at each call site. When a figure appears in three places it will eventually be updated in two of them.
The two measurement systems behind this conversion
This conversion sits on the fault line between the two measurement systems still in everyday use. The metric system was designed in one go in the 1790s as a coherent decimal scheme, where every unit relates to the next by a power of ten. The imperial and US customary systems grew instead by accretion over centuries, which is why their relationships are numbers like 12, 16, 5,280, and 43,560 rather than round ones.
Only three countries have not formally adopted the metric system: the United States, Liberia, and Myanmar. In practice the picture is messier than that, since the US uses metric units throughout science, medicine, and the military, while metric countries still buy screens and tires by the inch. That overlap is exactly why conversions like this one stay necessary.
More questions about cups and milliliters
Is the conversion exact or approximate?
The underlying definition is exact, and the factor shown here (236.588) is that definition expressed to the precision this page displays. For any everyday purpose the result is exact; only at very high precision would you need more digits of the factor.
Why does the answer have so many decimal places?
The converter shows a high-precision result so that it is never the limiting factor in your calculation. It is up to you to round to something sensible. A measurement taken with a tape measure does not become more accurate because the conversion carried six decimals.
Can I convert in the opposite direction on this page?
Yes. The swap button in the calculator reverses the conversion and carries the current result across as the new input, so you do not have to navigate anywhere or retype anything. The second table above also lists the reverse conversion directly.
Does anything get sent to a server?
No. The arithmetic runs in your browser with a few lines of JavaScript. Nothing you type is uploaded, logged, or stored, which also means the converter keeps working if your connection drops after the page has loaded.
Which figure should I use on an official form?
Use whatever precision the form asks for, and if it does not say, match the precision of the original measurement. For height, weight, and similar personal details, one decimal place is almost always sufficient and often more than is wanted.
Related volume conversions
If you need to go the other way as a starting point rather than as a swap, the mL to Cups converter is the mirror of this page: same factor, same tables, opposite direction. It is the more natural place to start when most of your figures are already in milliliters.
Volume is the category where American and metric recipes diverge most, so these related pairs tend to come up together:
- Liters to Gallons - Convert liters to US gallons quickly. Great for fuel economy, cooking, and tank sizes.
- Gallons to Liters - Convert US gallons to liters instantly. Useful for fuel, water tanks, and cooking.
- CM to Inches - Convert centimeters to inches instantly. Enter any value and get the exact result in decimal inches.
- KG to LBS - Convert kilograms to pounds instantly. Perfect for fitness, cooking, and shipping calculations.
- Celsius to Fahrenheit - Convert Celsius to Fahrenheit instantly. Essential for weather, cooking, and science.
- MPH to KPH - Convert miles per hour to kilometers per hour instantly. Perfect for travel and speed limits.
For anything not listed here, the full converter directory covers over a hundred pairs across length, weight, temperature, volume, area, speed, pressure, energy, and more.
Quick reference
| 1 cups equals | 236.588 mL |
| 1 mL equals | 0.00422676 cups |
| Formula | cups × 236.588 = mL |
| Cups system | Imperial / US customary |
| Milliliters system | Metric (SI) |
| Measures | Volume |
Why Use Our Cups to mL Converter?
Instant Results
Type any cups value and see the milliliters result immediately as you type.
Highly Accurate
Uses the exact conversion factor. cups × 236.588 = mL
Swap Direction
Easily convert Milliliters back to Cups with the swap button. No need to visit a different page.
One-Click Copy
Copy the converted result to your clipboard instantly with the Copy button.
Common Values Table
See a quick reference table of 9 common cups values and their milliliters equivalents.
100% Private
All conversions happen in your browser. Nothing is sent to a server or stored anywhere.
Frequently Asked Questions
How many milliliters in a cup?
1 cups = 236.588 mL. Use the formula: cups × 236.588 = mL.
How to convert cups to milliliters?
To convert cups to milliliters, use the formula: cups × 236.588 = mL. For example, 2 cups = 473.176 mL.
Is this cups to ml converter accurate?
Yes. The converter uses the internationally accepted exact conversion factor. The result is accurate to at least 6 significant figures.
Can I convert milliliters back to cups?
Yes. Click the "Swap direction" button to reverse the conversion. The current result becomes the new input automatically.
Does this work on mobile?
Yes. The converter works on all devices, phones, tablets, and desktops. All calculations happen in your browser.
Is my data stored anywhere?
No. All conversions run entirely in your browser. Nothing is uploaded, logged, or stored.
All Tools
Every tool, in one place.
290+ free tools. All run in your browser, no sign-up, no uploads, nothing stored.
Text Tools (24)
View allPDF Tools (16)
View allImage Tools (20)
View allUnit Converters (110)
View allCalculators (34)
View allMedia Tools (30)
View allGames and Puzzles (17)
View allDeveloper Tools (8)
Fun and Random (19)
View allDesign and Color (4)
Time Tools (6)
