Convert volume
Results update as you type.
A milliliter and a fluid ounce measure the same thing, liquid volume, but they belong to different measurement systems. This converter handles the mL to oz math instantly in one direction, and the oz to mL math instantly in the other. Enter a value, choose US or UK fluid ounces, and use the swap control to flip direction without retyping anything.
The short version, if you need it right now: 1 US fluid ounce equals 29.5735 mL. Divide by that number to convert one way, or multiply by it to convert back. The rest of this page covers the full calculator, worked examples in both directions, and a reference chart so you don't have to run the calculation twice. Need a different unit entirely, such as cups, liters, or gallons? The full Volume Converter covers all of them.
Results update as you type.
Start with the milliliter or fluid-ounce value you know, then choose the matching unit system.
The calculator updates immediately and the steps below explain each control before the formulas.
To convert milliliters to fluid ounces, divide the milliliter value by 29.5735 if you're working in US fluid ounces, or by 28.4131 if you're working in UK (imperial) fluid ounces. The difference between the two, about 4%, is small enough to ignore for a quick estimate but large enough to matter for anything precise, like a pharmaceutical dose or a bottled product's labeled volume.
Enter your milliliter value into the calculator above, confirm whether you want US or UK ounces, and the result appears immediately. If you're starting from ounces instead and need milliliters, use the swap control rather than doing the division by hand. It's the same formula run in reverse, but there's no reason to introduce a rounding error doing it manually.
Milliliter (mL): a metric unit of volume equal to one-thousandth of a liter, part of the International System of Units.
Fluid ounce (fl oz): a unit of volume, not weight, with two standardized values depending on country: the US fluid ounce (29.5735 mL) and the imperial fluid ounce (28.4131 mL). The US figure is a rounded version of the value published in NIST Special Publication 330, the official U.S. reference for metric and customary unit conversions.
Small rounding choices can matter when a milliliter-to-ounce conversion is repeated or scaled.
These checks help prevent system mix-ups and premature rounding in practical measurements.
Because 29.5735 is not a round number, converting between mL and oz rarely lands on a whole number in either direction. This tool shows enough decimal precision to stay accurate, then rounds sensibly for display. Two decimal places is plenty for everyday cooking or packaging use. For anything clinical or lab-related, use the calculator's displayed result rather than a rounded reference value from memory.
The most common mistake is treating "oz" as one unit. Fluid ounces measure volume, but the plain word "ounce" usually means weight. A fluid ounce of water weighs about 1.04 ounces. That's close enough to ignore for water, but not for denser liquids like honey or oil.
The second mistake is treating 30 mL as an exact match for 1 fluid ounce, in either direction. That rounding is fine for a single small measurement, but it drifts at scale. Converting 1,000 mL with the "30 mL per oz" shortcut gives 33.3 oz instead of the correct 33.81 US fl oz; going the other way, converting 32 oz at "30 mL per oz" gives 960 mL instead of the correct 946.35 mL.
The third mistake is mixing US and UK fluid ounces mid-calculation. If a label or recipe doesn't specify which one it means, check its origin. From the UK, Australia, or another Commonwealth country, use the UK figure (28.4131 mL per fl oz) rather than the US one (29.5735 mL).
This conversion comes up most in travel, cooking, product labeling, and medical or cosmetic dosing. Airlines and TSA-style carry-on rules cap liquids at specific fluid-ounce limits, so a cosmetics or toiletry bottle labeled only in mL needs a quick unit check before you pack it. Going the other way, medication doses are often written in fl oz on a label while the measuring device on hand is marked in mL, so getting the oz to mL conversion right matters more here than in most everyday conversions.
Cooking runs in both directions too. Recipes from outside the US often list ingredient volumes in mL, while US recipes list them in ounces for anyone cooking with metric tools. Converting once at the top of a recipe, rather than mid-recipe for each ingredient, keeps rounding errors from compounding either way.
Worked examples show typical milliliter and fluid-ounce amounts used in bottles, recipes, and travel containers.
The US and imperial results stay separate so the selected definition remains clear.
The code examples reproduce the same milliliter and fluid-ounce relationships used by the calculator.
Keep the US and imperial constants separate when adapting the snippets for another application.
This JavaScript example selects the appropriate fluid-ounce factor before calculating the result.
const ML_PER_FLOZ_US = 29.5735;
const ML_PER_FLOZ_UK = 28.4131;
function mlToOz(mlValue, system = 'us') {
const divisor = system === 'uk' ? ML_PER_FLOZ_UK : ML_PER_FLOZ_US;
return mlValue / divisor;
}
function ozToMl(ozValue, system = 'us') {
const factor = system === 'uk' ? ML_PER_FLOZ_UK : ML_PER_FLOZ_US;
return ozValue * factor;
}
// 250 mL to US fl oz
mlToOz(250); // ≈ 8.45
// 4 US fl oz to mL
ozToMl(4); // ≈ 118.294Excel/Google Sheets equivalent for US fluid ounces: =A1/29.5735 or =A1*29.5735.
This calculator runs entirely client-side. The value you enter is processed in your browser and never transmitted to a server or stored anywhere. Basic input validation helps prevent non-numeric or negative values from producing a meaningless result, but there's no server-side component here for that validation to protect. The entire calculation surface is local to your device.
Conversion values stay in the page and are not submitted to a calculation service.
Common errors usually come from treating US and imperial fluid ounces as the same unit.
Use the table to identify the mistake and apply the correct conversion direction.
Input condition | Tool behavior |
|---|---|
| Empty field | No result shown |
| Non-numeric text | Inline validation message |
| Negative number | Inline validation message |
| No US/UK selection made | Defaults to US fluid ounces |
| Very small values (e.g., 0.01 mL) | Displays with sufficient decimal precision rather than rounding to zero |
| Fractional ounce input (e.g., 1/2) | Accepts decimal equivalent (0.5); does not parse fraction slashes directly |
Use both tables to compare common milliliter values with US and imperial fluid ounces.
For every other volume unit, see the full Volume Converter.
This table starts with milliliters and shows both fluid-ounce definitions side by side.
Milliliters (mL) | US fluid ounces | Imperial (UK) fluid ounces |
|---|---|---|
| 1 mL | 0.034 fl oz (US) | 0.035 fl oz (UK) |
| 5 mL | 0.169 fl oz (US) | 0.176 fl oz (UK) |
| 10 mL | 0.338 fl oz (US) | 0.352 fl oz (UK) |
| 30 mL | 1.014 fl oz (US) | 1.056 fl oz (UK) |
| 50 mL | 1.691 fl oz (US) | 1.76 fl oz (UK) |
| 100 mL | 3.381 fl oz (US) | 3.52 fl oz (UK) |
| 250 mL | 8.454 fl oz (US) | 8.799 fl oz (UK) |
| 500 mL | 16.907 fl oz (US) | 17.598 fl oz (UK) |
| 750 mL | 25.361 fl oz (US) | 26.396 fl oz (UK) |
| 1,000 mL | 33.814 fl oz (US) | 35.195 fl oz (UK) |
This table starts with fluid ounces and converts each US or imperial value to milliliters.
Fluid ounces | Milliliters (mL) from US fluid ounces | Milliliters (mL) from Imperial (UK) fluid ounces |
|---|---|---|
| 0.5 fl oz | 14.79 mL | 14.21 mL |
| 1 fl oz | 29.57 mL | 28.41 mL |
| 2 fl oz | 59.15 mL | 56.83 mL |
| 4 fl oz | 118.29 mL | 113.65 mL |
| 8 fl oz | 236.59 mL | 227.3 mL |
| 12 fl oz | 354.88 mL | 340.96 mL |
| 16 fl oz | 473.18 mL | 454.61 mL |
| 32 fl oz | 946.35 mL | 909.22 mL |
Frequently Asked Questions