Free recipe measurement converter for cooking and baking. Instantly convert cups to grams, tablespoons to milliliters, ounces to pounds, Fahrenheit to Celsius, and more with accurate formulas.
Converting recipe measurements doesn't have to be complicated. Whether you're scaling a family recipe, working with international cookbooks, or simply need to convert between metric and imperial cooking units, this free recipe measurement converter makes kitchen conversions effortless. From grams to cups, tablespoons to milliliters, ounces to pounds, and Fahrenheit to Celsius, get accurate conversions instantly for all your baking and cooking needs.
Understanding measurement conversions is crucial for recipe success. A miscalculated ingredient ratio can turn a perfect cake into a disaster, or leave your sauce too thick or thin. This tool helps home cooks and professional chefs alike ensure precision in every dish, whether you're converting a grandmother's handwritten recipe or adapting international cuisine for your kitchen.
Volume measurements quantify the space an ingredient occupies and are essential for liquids, powders, and loose ingredients:
Metric Volume Units:
Imperial and US Volume Units:
Weight measurements provide precise quantities based on mass, critical for baking where accuracy matters:
Metric Weight Units:
Imperial and US Weight Units:
Fahrenheit (°F): Primarily used in the United States for oven temperatures and cooking Celsius (°C): The metric standard used worldwide, where water freezes at 0°C and boils at 100°C
Metric to Imperial:
Imperial to Metric:
Between Metric and Imperial:
Celsius to Fahrenheit:
Fahrenheit to Celsius:
Understanding these standard equivalencies helps with quick mental conversions:
Follow these straightforward steps to convert any recipe measurement accurately:
Determine what measurement unit your recipe uses. Check whether it's:
Decide what unit you need to convert to based on:
Enter the quantity you want to convert. Be precise with:
Choose the appropriate conversion category:
Verify your converted measurement makes sense:
Volume-to-Weight Conversions: Converting between volume and weight requires knowing ingredient density. For example, 1 cup of flour weighs approximately 120-130 grams, while 1 cup of sugar weighs about 200 grams. These conversions are ingredient-specific and not universal.
Common Ingredient Densities (1 cup measurements):
Recipe Scaling: When scaling recipes up or down, convert all ingredients proportionally. A recipe doubled requires all measurements doubled, maintaining the original ratios.
Precision Matters: Baking is chemistry—use weight measurements when possible for ingredients like flour, sugar, and butter. Volume measurements can vary based on how ingredients are packed.
You discover an amazing French pastry recipe, but it lists ingredients in grams and milliliters while your kitchen uses cups and ounces. Convert measurements to your familiar system without sacrificing the recipe's precision. European recipes often provide superior accuracy through weight measurements, which you can maintain even after conversion.
Grandma's cookie recipe serves 24, but you're hosting a party for 60. Convert the ingredient quantities while maintaining proper ratios. The converter helps you scale 1½ cups butter to the equivalent amount needed for 2.5x the recipe, ensuring your cookies taste exactly like hers.
Managing macros or following a specific diet plan? Convert recipe measurements to accurately track caloric intake. When a recipe calls for "1 cup cooked rice," convert to grams to match your nutrition app's database, which typically uses weight measurements for accuracy.
Restaurant kitchens often standardize recipes using weight measurements for consistency across prep cooks. Convert volume-based home recipes to professional weight standards, ensuring every batch meets quality expectations regardless of who's cooking.
Substituting ingredients often requires measurement adjustments. If a recipe calls for "1 cup honey" but you're using agave nectar (which has different density and sweetness), convert measurements to maintain the recipe's intended texture and flavor balance.
Before standardized measurements, cooks used imprecise methods like "a handful," "a pinch," or "the size of an egg." Ancient Roman recipes referenced "a spoonful" without specifying size, and medieval cookbooks described quantities as "as much as necessary" or "to taste."
The earliest standardized cooking measurements appeared in the 18th century. Amelia Simmons' 1796 cookbook "American Cookery" was among the first to use specific measurements like "teacup" and "wine glass," though these still lacked precision.
The metric system, developed in France during the 1790s, revolutionized scientific measurement and gradually influenced cooking. Its decimal-based logic made conversions straightforward: 1,000 milliliters equals 1 liter, 1,000 grams equals 1 kilogram.
The imperial system, formalized in Britain in 1824, standardized measurements across the British Empire. The United States adopted a similar but slightly different system (US customary units), creating the confusion between US cups (236.588 mL) and metric cups (250 mL) that persists today.
Fannie Farmer's 1896 "Boston Cooking-School Cook Book" revolutionized American cooking by introducing level measurements—using a knife to level off cup and spoon measurements for consistency. This innovation made recipes reproducible and cooking teachable.
The 20th century saw growing advocacy for metric adoption in cooking. Many countries transitioned to metric measurements, while the United States maintained imperial units. Today's globalized food culture and internet recipe sharing make conversion tools essential.
Digital kitchen scales, introduced in the 1980s, made precise weight measurements accessible to home cooks. Modern recipes increasingly include both volume and weight measurements, acknowledging international audiences and precision requirements. Recipe apps now auto-convert measurements, and smart kitchen devices integrate conversion functions directly into cooking workflows.
Here are programming examples for implementing measurement conversions:
1// Volume conversions
2function cupsToMilliliters(cups) {
3 return cups * 236.588;
4}
5
6function tablespoonsToMilliliters(tbsp) {
7 return tbsp * 14.7868;
8}
9
10function litersToGallons(liters) {
11 return liters / 3.785;
12}
13
14// Weight conversions
15function ouncesToGrams(ounces) {
16 return ounces * 28.3495;
17}
18
19function poundsToKilograms(pounds) {
20 return pounds * 0.453592;
21}
22
23// Temperature conversions
24function celsiusToFahrenheit(celsius) {
25 return (celsius * 9/5) + 32;
26}
27
28function fahrenheitToCelsius(fahrenheit) {
29 return (fahrenheit - 32) * 5/9;
30}
31
32// Example usage
33console.log(`2 cups = ${cupsToMilliliters(2).toFixed(2)} mL`);
34console.log(`8 oz = ${ouncesToGrams(8).toFixed(2)} grams`);
35console.log(`350°F = ${fahrenheitToCelsius(350).toFixed(2)}°C`);
361def cups_to_milliliters(cups):
2 """Convert cups to milliliters"""
3 return cups * 236.588
4
5def ounces_to_grams(ounces):
6 """Convert ounces to grams"""
7 return ounces * 28.3495
8
9def fahrenheit_to_celsius(fahrenheit):
10 """Convert Fahrenheit to Celsius"""
11 return (fahrenheit - 32) * 5/9
12
13# Example usage with common recipe conversions
14ingredients = {
15 "flour": {"cups": 2, "target": "grams"},
16 "butter": {"ounces": 8, "target": "grams"},
17 "oven_temp": {"fahrenheit": 375, "target": "celsius"}
18}
19
20print(f"Flour: {cups_to_milliliters(ingredients['flour']['cups']):.2f} mL")
21print(f"Butter: {ounces_to_grams(ingredients['butter']['ounces']):.2f} g")
22print(f"Oven: {fahrenheit_to_celsius(ingredients['oven_temp']['fahrenheit']):.2f}°C")
231' Excel VBA functions for recipe conversions
2Function CupsToML(cups As Double) As Double
3 CupsToML = cups * 236.588
4End Function
5
6Function OuncesToGrams(ounces As Double) As Double
7 OuncesToGrams = ounces * 28.3495
8End Function
9
10Function FahrenheitToCelsius(fahrenheit As Double) As Double
11 FahrenheitToCelsius = (fahrenheit - 32) * 5 / 9
12End Function
13
14' Usage in Excel:
15' =CupsToML(2) returns 473.176
16' =OuncesToGrams(16) returns 453.592
17' =FahrenheitToCelsius(350) returns 176.67
181public class RecipeConverter {
2 // Volume conversions
3 public static double cupsToMilliliters(double cups) {
4 return cups * 236.588;
5 }
6
7 public static double tablespoonsToMilliliters(double tablespoons) {
8 return tablespoons * 14.7868;
9 }
10
11 // Weight conversions
12 public static double ouncesToGrams(double ounces) {
13 return ounces * 28.3495;
14 }
15
16 public static double poundsToKilograms(double pounds) {
17 return pounds * 0.453592;
18 }
19
20 // Temperature conversions
21 public static double fahrenheitToCelsius(double fahrenheit) {
22 return (fahrenheit - 32) * 5.0 / 9.0;
23 }
24
25 public static void main(String[] args) {
26 System.out.printf("2 cups = %.2f mL%n", cupsToMilliliters(2));
27 System.out.printf("8 oz = %.2f g%n", ouncesToGrams(8));
28 System.out.printf("350°F = %.2f°C%n", fahrenheitToCelsius(350));
29 }
30}
311import math
2
3class RecipeConverter:
4 """Comprehensive recipe measurement converter"""
5
6 # Volume conversion constants (to mL)
7 VOLUME_TO_ML = {
8 'tsp': 4.929,
9 'tbsp': 14.7868,
10 'fl_oz': 29.5735,
11 'cup': 236.588,
12 'pint': 473.176,
13 'quart': 946.353,
14 'gallon': 3785.41,
15 'ml': 1,
16 'l': 1000
17 }
18
19 # Weight conversion constants (to grams)
20 WEIGHT_TO_GRAMS = {
21 'mg': 0.001,
22 'g': 1,
23 'kg': 1000,
24 'oz': 28.3495,
25 'lb': 453.592
26 }
27
28 @staticmethod
29 def convert_volume(value, from_unit, to_unit):
30 """Convert between volume units"""
31 ml = value * RecipeConverter.VOLUME_TO_ML[from_unit]
32 return ml / RecipeConverter.VOLUME_TO_ML[to_unit]
33
34 @staticmethod
35 def convert_weight(value, from_unit, to_unit):
36 """Convert between weight units"""
37 grams = value * RecipeConverter.WEIGHT_TO_GRAMS[from_unit]
38 return grams / RecipeConverter.WEIGHT_TO_GRAMS[to_unit]
39
40 @staticmethod
41 def convert_temperature(value, from_unit, to_unit):
42 """Convert between temperature units"""
43 if from_unit == 'F' and to_unit == 'C':
44 return (value - 32) * 5/9
45 elif from_unit == 'C' and to_unit == 'F':
46 return (value * 9/5) + 32
47 return value
48
49# Example usage
50converter = RecipeConverter()
51print(f"2 cups to mL: {converter.convert_volume(2, 'cup', 'ml'):.2f}")
52print(f"8 oz to grams: {converter.convert_weight(8, 'oz', 'g'):.2f}")
53print(f"350°F to °C: {converter.convert_temperature(350, 'F', 'C'):.2f}")
54The weight of a cup depends entirely on the ingredient because different substances have different densities. A cup of all-purpose flour weighs approximately 120-130 grams, while a cup of granulated sugar weighs about 200 grams, and a cup of water weighs 236.588 grams (equivalent to its volume in milliliters). For accurate baking, always use weight measurements when converting between volume and weight, and refer to ingredient-specific conversion charts.
US cups measure 236.588 milliliters, while metric cups (used in countries like Australia) measure 250 milliliters—about a 6% difference. This discrepancy can affect recipe outcomes, especially in baking where precision matters. When following international recipes, verify which cup measurement the recipe uses. Most American recipes use US cups unless otherwise specified.
Converting teaspoons to grams requires knowing the ingredient's density, as teaspoons measure volume while grams measure weight. For example, 1 teaspoon of water equals approximately 5 grams, but 1 teaspoon of flour equals about 2.5 grams, and 1 teaspoon of salt equals roughly 6 grams. Volume-to-weight conversions are ingredient-specific and cannot be universally calculated without density information.
Weight measurements provide superior accuracy and consistency, particularly crucial in baking where precise ratios determine texture and rise. Measuring by weight eliminates variables like how tightly ingredients are packed, whether flour is sifted, or the size variations in "cups" across different measuring sets. Professional bakers worldwide prefer weight measurements for reproducible results.
Use the formula: °C = (°F - 32) × 5/9. Common oven conversions include:
Many modern ovens display both temperature scales, but understanding the conversion helps when following international recipes.
Digital kitchen scales provide the highest accuracy for solid and liquid ingredients, measuring in grams or ounces. For volume measurements, use proper measuring cups (dry measuring cups for solid ingredients, liquid measuring cups with pour spouts for liquids) and level off dry ingredients with a straight edge. Measuring by weight eliminates packing discrepancies and ensures recipe consistency.
US tablespoons measure 14.7868 mL while Australian tablespoons measure 20 mL—a significant 35% difference. Teaspoons are more standardized internationally at approximately 5 mL, though slight variations exist. When using recipes from different countries, verify which tablespoon standard applies, especially for ingredients like baking powder or salt where precision affects results.
To scale recipes, multiply all ingredients by the same scaling factor. If doubling a recipe (scaling factor = 2), multiply every measurement by 2. For 1.5x the recipe, multiply by 1.5. Maintain proportional relationships between ingredients to preserve taste and texture. Note that cooking times may need adjustment—doubled recipes don't necessarily require doubled cooking time.
There are 16 tablespoons in 1 cup. This means 1 tablespoon equals 1/16 of a cup, or approximately 14.79 milliliters. Understanding this ratio helps with quick conversions: 8 tablespoons = 1/2 cup, 4 tablespoons = 1/4 cup, and 2 tablespoons = 1/8 cup. This conversion is consistent in both US and metric measurement systems.
To convert pounds to ounces, multiply by 16 since 1 pound equals 16 ounces. For example, 2 pounds = 32 ounces, and 0.5 pounds = 8 ounces. This conversion is particularly useful when recipes specify larger quantities in pounds but you need to measure smaller portions in ounces using a kitchen scale.
Fluid ounces (fl oz) measure volume while ounces (oz) measure weight. One fluid ounce of water weighs approximately one ounce, but this equivalence doesn't hold for other substances. For example, 1 fluid ounce of honey weighs more than 1 ounce, while 1 fluid ounce of flour weighs less. Always check whether a recipe calls for fluid ounces or weight ounces.
1 tablespoon equals approximately 14.79 milliliters in the US measurement system. In Australia and some other countries, 1 tablespoon equals 20 milliliters. When converting recipes, verify which tablespoon standard is being used. Most recipes from the United States, Canada, and the UK use the 15 mL (rounded) tablespoon measurement.
Whether you're exploring international cuisines, adapting family recipes, or perfecting your baking technique, accurate measurement conversion is essential for cooking success. Use this free recipe measurement converter to translate between metric and imperial units, scale recipes confidently, and ensure every dish turns out exactly as intended. From cups to grams, tablespoons to milliliters, ounces to pounds, and Fahrenheit to Celsius—get instant, accurate conversions for all your culinary adventures.
"Cooking Weights and Measures." Wikipedia, Wikimedia Foundation, https://en.wikipedia.org/wiki/Cooking_weights_and_measures. Accessed January 2025.
"United States Customary Units." Wikipedia, Wikimedia Foundation, https://en.wikipedia.org/wiki/United_States_customary_units. Accessed January 2025.
"Metric System." Wikipedia, Wikimedia Foundation, https://en.wikipedia.org/wiki/Metric_system. Accessed January 2025.
King Arthur Baking Company. "Ingredient Weight Chart." King Arthur Baking, https://www.kingarthurbaking.com/learn/ingredient-weight-chart. Accessed January 2025.
"Conversion of Units." Wikipedia, Wikimedia Foundation, https://en.wikipedia.org/wiki/Conversion_of_units. Accessed January 2025.
Discover more tools that might be useful for your workflow