Unit Tools·4 min

Cubic Feet to Liters Conversion: A Practical Guide

Convert cu ft to liters, gallons, cubic meters, and cups. With shipping context.

Why convert cubic feet to liters?

Volume conversion shows up whenever you ship, store, brew, cook, or design anything that holds or moves a measurable quantity of space. The cubic foot (cu ft or ft³) is the standard unit in the US for shipping (FedEx, UPS), HVAC sizing, refrigerator and freezer capacity, and natural gas billing. The liter (L) is the SI standard for almost everything else, especially in cooking, brewing, automotive (engine displacement), and most countries' consumer packaging.

You will encounter this conversion when:

  • Shipping a package: FedEx and UPS quote rates based on dimensional weight in cubic inches or cubic feet. International destinations usually report cubic meters.
  • Sizing an HVAC system: Airflow is rated in CFM (cubic feet per minute). Equipment specs often give liters per second.
  • Refrigerator or freezer shopping: US models list capacity in cu ft. European models list liters.
  • Brewing and cooking: Recipes mix units freely. A 5-gallon batch is 18.93 L; a 1 L bottle is 0.0353 cu ft.
  • Engine displacement: 2.0 L is the same as 122 cu in.

The good news: the formulas are short, exact, and easy to remember.

The exact conversion formulas

Cubic feet to liters

``` 1 cu ft = 28.316846592 L (exact, by definition) 1 L = 0.03531466672149 cu ft 1 L = 1 dm³ (cubic decimeter, exact) 1 m³ = 1,000 L (exact) 1 m³ = 35.3146667215 cu ft ```

Why the exact number: Since 1959, the international foot is defined as exactly 0.3048 m. A cubic foot is therefore 0.3048³ = 0.028316846592 m³ exactly. A liter is exactly 0.001 m³ (one cubic decimeter). So 1 cu ft = 0.028316846592 / 0.001 = 28.316846592 L, exact.

Worked examples:

  • 5 cu ft → L: 5 × 28.316846592 = 141.58 L (a large duffel bag)
  • 100 L → cu ft: 100 / 28.316846592 = 3.53 cu ft
  • 1.5 cu ft → mL: 1.5 × 28,316.846592 = 42,475.27 mL (a small cooler)

Gallons and other common units

The two gallons you will encounter:

``` 1 US gallon = 3.785411784 L (exact) 1 US gallon = 0.133680556 cu ft 1 Imperial gallon = 4.54609 L (exact) 1 Imperial gallon = 0.160543653 cu ft 1 cup (US) = 236.5882365 mL 1 cup (metric) = 250 mL 1 fluid ounce (US) = 29.5735295625 mL ```

The gallon trap: US gallons and Imperial (UK) gallons are different. 1 US gallon = 3.785 L, but 1 Imperial gallon = 4.546 L. A 1-gallon jug of milk in the US is 3.785 L; the same jug in the UK would be 4.546 L. Mixing these up gives a 20% error.

Cups, tablespoons, and teaspoons (US)

``` 1 tablespoon (US) = 14.78676478125 mL 1 teaspoon (US) = 4.92892159375 mL 1 fluid ounce (US)= 29.5735295625 mL 1 cup (US) = 236.5882365 mL = 8 fl oz 1 pint (US) = 473.176473 mL 1 quart (US) = 946.352946 mL 1 gallon (US) = 3.785411784 L ```

For most cooking, the simple approximation 1 cup ≈ 240 mL is good enough. For baking or scaling up, use exact values.

Quick reference table

| Unit | Liters | Cubic feet | Common context | |-----------------|--------------:|---------------:|-----------------------------| | 1 fl oz (US) | 0.0296 | 0.00104 | Tablespoon of liquid | | 1 cup (US) | 0.2366 | 0.00836 | Coffee mug | | 1 L | 1 | 0.0353 | Water bottle | | 1 gallon (US) | 3.79 | 0.1337 | Milk jug | | 1 cu ft | 28.32 | 1 | Carry-on luggage, freezer | | 1 m³ | 1,000 | 35.31 | Shipping pallet |

Method 1: Use UtilBoxx's Volume Converter (Recommended)

The fastest, most private, and most precise way to convert volume in your browser is the UtilBoxx Volume Converter. It supports cubic meters, liters, milliliters, cubic feet, cubic inches, US gallons, Imperial gallons, cups, fluid ounces, tablespoons, teaspoons, and more, with bidirectional instant conversion. Everything runs in your browser — no server, no upload, no logs.

How to use it:

  1. Go to utilboxx.com/en/tools/unit/volume
  2. Type a value in any field (L, mL, gal, cu ft, cu in, cup, fl oz, etc.)
  3. All other fields update instantly
  4. Copy the result

Why we recommend this method:

  • 100% free, no signup, no email, no ads
  • Privacy-first: nothing leaves your browser
  • Covers US, Imperial, and metric simultaneously, so you can compare any two units without doing math
  • Exact precision — uses the precise 28.316846592 factor
  • Works on any device with a browser

If you ship packages, brew beer, bake bread, or buy appliances internationally, this tool will save you from costly unit confusion.

Method 2: Google Search

For a one-off conversion, Google is the fastest path. Type `5 cu ft to L` or `100 liters in cubic feet` into the search box. Google replies with a built-in converter card at the top of the results.

Pros: zero friction, no click required, works on any device with a browser.

Cons: requires an internet connection, only good for one value at a time, and Google logs every conversion. For privacy-sensitive values (recipe R&D, supplier pricing), prefer an offline method. Google also has trouble with US vs Imperial gallons and may not distinguish unless you spell it out (e.g., "US gallon").

Method 3: Python (or any language)

A few lines of Python cover every volume conversion. The same factor of 28.316846592 is exact, so you can use it without worrying about floating-point drift.

```python L_PER_CUFT = 28.316846592 L_PER_USGAL = 3.785411784 L_PER_IMPGAL = 4.54609 ML_PER_CUP = 236.5882365

def cuft_to_l(cuft): return cuft L_PER_CUFT def l_to_cuft(l): return l / L_PER_CUFT def usgal_to_l(gal): return gal L_PER_USGAL def impgal_to_l(gal): return gal L_PER_IMPGAL def cup_to_ml(cup): return cup ML_PER_CUP

print(cuft_to_l(5)) # 141.58423... print(usgal_to_l(1)) # 3.785411784 print(impgal_to_l(1)) # 4.54609 print(cup_to_ml(1)) # 236.5882365 ```

JavaScript, with the same idea:

```js const L_PER_CUFT = 28.316846592; const cuftToL = cuft => cuft * L_PER_CUFT; const lToCuft = l => l / L_PER_CUFT; console.log(cuftToL(5).toFixed(2)); // 141.58 ```

For batch conversion of recipe data (a CSV of ingredient amounts in cups, say, that you want in mL for a metric cookbook), a 3-line pandas script processes thousands of rows in milliseconds.

Method 4: CLI with units (Linux/macOS)

The GNU `units` utility handles volume conversion on the command line. Install on macOS with Homebrew (`brew install units`).

```bash # Convert 5 cu ft to liters units "5 cubicfeet" "liters" # 141.58423

# Convert 1 US gallon to liters units "1 gallon" "liters" # 3.7854118

# Convert 100 L to cubic feet units "100 liters" "cubicfeet" # 3.5314667 ```

`units` understands many synonyms (`cu ft`, `cubic feet`, `ft³`, `L`, `liter`, `litre`, `gal`, `gallon`, etc.) and handles compound expressions. It is the fastest path for one-off volume math in a shell session, and ideal for shell scripts that need to embed conversions in pipelines.

Common questions

Are US gallons and Imperial gallons the same?

No — and confusing them is one of the most common unit errors. 1 US gallon = 3.785 L, but 1 Imperial gallon = 4.546 L. The difference is about 20%. A recipe that calls for 1 gallon of water in the US uses 3.785 L; the same recipe in the UK uses 4.546 L. Always check the source of any "gallon" measurement before treating it as a known quantity.

Is a "fluid ounce" the same as a weight ounce?

No. A fluid ounce (fl oz) measures volume. An ounce (oz) measures weight (mass). They share a name and the abbreviation "oz", but they are different units. 1 fl oz of water weighs approximately 1 oz (avoirdupois), but 1 fl oz of honey weighs about 1.5 oz, and 1 fl oz of mercury weighs about 13.6 oz. The abbreviation is a historical accident that causes constant confusion.

How do I calculate shipping cost based on volume?

US carriers (FedEx, UPS, USPS) use dimensional weight: (length × width × height in inches) / 139 = billable pounds for domestic shipments. For international, divide by 139 for some services or by 5,000 for cubic cm to kg. To estimate volume in cu ft from a box, multiply dimensions in inches and divide by 1,728 (cubic inches per cubic foot). To convert to liters, multiply by 28.317. Always check the carrier's specific calculator, as the divisors vary by service.

Why is engine displacement in liters?

Engine displacement (the total volume swept by all pistons) is the most natural metric for engine size. 2.0 L is much easier to say than "122 cubic inches". The SI unit of volume is the cubic meter, but 1 m³ = 1,000,000 cm³ = 1,000 L, and engines are typically 1–8 L, so liters are the natural subdivision. US muscle car enthusiasts still use cubic inches ("a 350 small-block") out of tradition, but the official spec sheet is in liters.

What is the difference between a "cup" in the US, UK, and metric?

Three different cups:

  • US legal cup: 240 mL (used on nutrition labels since the 1990s, but recipes often use 236.588 mL = 8 fl oz)
  • US customary cup: 236.5882365 mL (the standard US cooking cup)
  • Metric cup: 250 mL (used in Australia, New Zealand, and metric recipes)
  • Imperial cup: 284.131 mL (rare, mostly UK older recipes)

The 5–20% difference between these cups matters in baking, where small errors in flour or water change the outcome. Use exact values for baking; "1 cup" approximations are fine for soup.

How much is 1 m³ in real-world terms?

A cubic meter is the volume of a cube 1 meter on each side. Some real-world equivalents:

  • A standard washing machine: about 0.4 m³
  • A full bathtub: about 0.3 m³
  • A small refrigerator: about 0.5 m³
  • A shipping pallet (standard EUR pallet, loaded to 1 m height): exactly 1.2 × 0.8 × 1.0 = 0.96 m³
  • An SUV trunk: about 1.5–2.5 m³
  • A 10×10×10 ft room: 28.3 m³

Conclusion

Cubic feet to liters is a fundamental conversion that spans shipping, cooking, brewing, HVAC, and automotive contexts. The exact factor (28.316846592) has not changed since 1959 and is exact. For occasional conversions, the UtilBoxx Volume Converter is private, free, and works offline once loaded. For batch work, Python and the `units` CLI handle thousands of values without leaving the terminal. And for one-offs, Google or a voice assistant gives an instant answer.

The mental shortcuts: 1 cu ft ≈ 28 L (a small suitcase), and 1 L ≈ 35 mL per cubic inch. A 5 cu ft bag is about 142 L, a 1 L bottle is about 0.035 cu ft. With these anchors, you can sanity-check any volume in your head.