{"id":1678,"date":"2026-04-02T07:00:09","date_gmt":"2026-04-02T07:00:09","guid":{"rendered":"https:\/\/donhit.com\/en\/?p=1678"},"modified":"2026-04-02T07:00:09","modified_gmt":"2026-04-02T07:00:09","slug":"milk-weight","status":"publish","type":"post","link":"https:\/\/donhit.com\/en\/calculator\/milk-weight\/","title":{"rendered":"Milk Weight Calculator"},"content":{"rendered":"<div class=\"container123\">\r\n        <div class=\"header123\">\r\n            <div class=\"milk-icon\">\ud83e\udd5b<\/div>\r\n            <h2 class=\"title\">Milk Weight Calculator<\/h2>\r\n            <p class=\"subtitle\">Calculate milk weight based on volume and type<\/p>\r\n        <\/div>\r\n\r\n        <div class=\"info-section\">\r\n            <h2 class=\"info-title\">About Milk Density<\/h2>\r\n            <p class=\"info-text\">\r\n                Different types of milk have different densities due to varying fat content and processing methods. \r\n                This calculator helps you convert between volume and weight for various milk types.\r\n            <\/p>\r\n        <\/div>\r\n\r\n        <div class=\"density-info\">\r\n            <div class=\"density-card\">\r\n                <div class=\"density-type\">Whole Milk (3.25% fat)<\/div>\r\n                <div class=\"density-value\">1.03 g\/ml<\/div>\r\n                <div class=\"density-note\">Most common type<\/div>\r\n            <\/div>\r\n            <div class=\"density-card\">\r\n                <div class=\"density-type\">2% Milk<\/div>\r\n                <div class=\"density-value\">1.02 g\/ml<\/div>\r\n                <div class=\"density-note\">Reduced fat<\/div>\r\n            <\/div>\r\n            <div class=\"density-card\">\r\n                <div class=\"density-type\">1% Milk<\/div>\r\n                <div class=\"density-value\">1.015 g\/ml<\/div>\r\n                <div class=\"density-note\">Low fat<\/div>\r\n            <\/div>\r\n            <div class=\"density-card\">\r\n                <div class=\"density-type\">Skim Milk (0% fat)<\/div>\r\n                <div class=\"density-value\">1.01 g\/ml<\/div>\r\n                <div class=\"density-note\">Fat-free<\/div>\r\n            <\/div>\r\n        <\/div>\r\n\r\n        <div class=\"calculator-section\">\r\n            <h2 class=\"calc-title\">Calculate Milk Weight<\/h2>\r\n            \r\n            <div class=\"input-row\">\r\n                <div class=\"input-group\">\r\n                    <label class=\"input-label\">Volume<\/label>\r\n                    <div class=\"input-wrapper\">\r\n                        <input type=\"number\" id=\"volume\" placeholder=\"250\" step=\"0.1\">\r\n                        <span class=\"unit\">ml<\/span>\r\n                    <\/div>\r\n                <\/div>\r\n                \r\n                <div class=\"input-group\">\r\n                    <label class=\"input-label\">Milk Type<\/label>\r\n                    <select id=\"milkType\">\r\n                        <option value=\"1.03\">Whole Milk (3.25% fat)<\/option>\r\n                        <option value=\"1.02\">2% Milk<\/option>\r\n                        <option value=\"1.015\">1% Milk<\/option>\r\n                        <option value=\"1.01\">Skim Milk (0% fat)<\/option>\r\n                        <option value=\"1.025\">Heavy Cream (35% fat)<\/option>\r\n                        <option value=\"1.005\">Almond Milk<\/option>\r\n                        <option value=\"1.04\">Condensed Milk<\/option>\r\n                    <\/select>\r\n                <\/div>\r\n            <\/div>\r\n\r\n            <div class=\"button-group\">\r\n                <button class=\"btn btn-primary\" onclick=\"calculateWeight()\">Calculate Weight<\/button>\r\n                <button class=\"btn btn-secondary\" onclick=\"clearInputs()\">Clear<\/button>\r\n            <\/div>\r\n\r\n            <div id=\"result\" class=\"result-section\" style=\"display: none;\">\r\n                <div class=\"result-content\">\r\n                    <div class=\"result-title\">Calculated Weight<\/div>\r\n                    <div id=\"resultValue\" class=\"result-value\">-<\/div>\r\n                    <div id=\"resultDetails\" class=\"result-details\">-<\/div>\r\n                <\/div>\r\n            <\/div>\r\n        <\/div>\r\n\r\n        <div class=\"conversion-table\">\r\n            <h3 class=\"table-title\">Quick Reference: Common Measurements<\/h3>\r\n            <div class=\"conversion-grid\">\r\n                <div class=\"conversion-item\">\r\n                    <div class=\"conversion-label\">1 Cup Whole Milk<\/div>\r\n                    <div class=\"conversion-value\">~247g<\/div>\r\n                <\/div>\r\n                <div class=\"conversion-item\">\r\n                    <div class=\"conversion-label\">1 Liter Whole Milk<\/div>\r\n                    <div class=\"conversion-value\">~1030g<\/div>\r\n                <\/div>\r\n                <div class=\"conversion-item\">\r\n                    <div class=\"conversion-label\">1 Gallon Whole Milk<\/div>\r\n                    <div class=\"conversion-value\">~3900g<\/div>\r\n                <\/div>\r\n                <div class=\"conversion-item\">\r\n                    <div class=\"conversion-label\">1 Tablespoon Milk<\/div>\r\n                    <div class=\"conversion-value\">~15.4g<\/div>\r\n                <\/div>\r\n                <div class=\"conversion-item\">\r\n                    <div class=\"conversion-label\">1 Pint Whole Milk<\/div>\r\n                    <div class=\"conversion-value\">~490g<\/div>\r\n                <\/div>\r\n                <div class=\"conversion-item\">\r\n                    <div class=\"conversion-label\">1 Quart Whole Milk<\/div>\r\n                    <div class=\"conversion-value\">~980g<\/div>\r\n                <\/div>\r\n            <\/div>\r\n        <\/div>\r\n    <\/div>\r\n\r\n    <script>\r\n        function calculateWeight() {\r\n            const volume = parseFloat(document.getElementById('volume').value);\r\n            const density = parseFloat(document.getElementById('milkType').value);\r\n            const resultDiv = document.getElementById('result');\r\n            const resultValue = document.getElementById('resultValue');\r\n            const resultDetails = document.getElementById('resultDetails');\r\n\r\n            if (!volume || volume <= 0) {\r\n                alert('Please enter a valid volume');\r\n                return;\r\n            }\r\n\r\n            \/\/ Calculate weight in grams\r\n            const weightGrams = volume * density;\r\n            const weightKg = weightGrams \/ 1000;\r\n            const weightOz = weightGrams * 0.035274;\r\n            const weightLbs = weightGrams * 0.00220462;\r\n\r\n            \/\/ Get milk type name\r\n            const milkSelect = document.getElementById('milkType');\r\n            const milkTypeName = milkSelect.options[milkSelect.selectedIndex].text;\r\n\r\n            \/\/ Display results\r\n            resultValue.textContent = `${weightGrams.toFixed(1)} g`;\r\n            \r\n            let details = `${volume}ml of ${milkTypeName}<br>`;\r\n            details += `Weight: ${weightGrams.toFixed(1)}g | ${weightKg.toFixed(3)}kg<br>`;\r\n            details += `Imperial: ${weightOz.toFixed(2)}oz | ${weightLbs.toFixed(3)}lbs`;\r\n            \r\n            resultDetails.innerHTML = details;\r\n            resultDiv.style.display = 'block';\r\n        }\r\n\r\n        function clearInputs() {\r\n            document.getElementById('volume').value = '';\r\n            document.getElementById('milkType').selectedIndex = 0;\r\n            document.getElementById('result').style.display = 'none';\r\n        }\r\n\r\n        \/\/ Calculate on Enter key press\r\n        document.getElementById('volume').addEventListener('keypress', function(e) {\r\n            if (e.key === 'Enter') {\r\n                calculateWeight();\r\n            }\r\n        });\r\n    <\/script>\n<article>You ever stand in the kitchen, holding a measuring cup full of milk, wondering why your recipe says \u201c8 ounces\u201d but you\u2019re staring at \u201c1 cup\u201d like&#8230; aren\u2019t they the same thing? I\u2019ve been there too. And if you&#8217;re working with milk regularly\u2014whether you&#8217;re baking at home, managing a dairy farm, or labeling food for sale\u2014that tiny difference between fluid ounces and weight ounces can mess things up more than you&#8217;d expect.<\/p>\n<p>That\u2019s where a milk weight calculator earns its keep. It\u2019s not just a fancy tool\u2014it\u2019s practical, especially when you&#8217;re converting volume to weight in recipes, nutrition facts, or inventory logs. Because milk, unlike water, has its own density quirks thanks to fat content, temperature, and a few other fun variables. And trust me, you can\u2019t just swap cups for pounds and call it even. It doesn\u2019t work like that.<\/p>\n<h2>The Science Behind Milk Density<\/h2>\n<p>What trips people up is that milk isn&#8217;t just water with a splash of white. It&#8217;s a mix of water, butterfat, proteins (like casein), lactose, and a few minerals. And fat, surprisingly, is less dense than water.<\/p>\n<p>So, skim milk (which has most of its fat removed) is a little heavier by volume than whole milk. But, because there\u2019s less variation in real-world batches, whole milk still comes out heavier in most common conversions due to temperature assumptions.<\/p>\n<p>And speaking of that\u2014temperature matters. Cold milk is denser than warm milk. If you\u2019re pouring straight from the fridge, your cup might weigh a few grams more than the same volume at room temperature. It\u2019s not dramatic, but it\u2019s real\u2014especially in precision baking or large-batch production.<\/p>\n<h2>Why You Need a Milk Weight Calculator<\/h2>\n<p>Here\u2019s the thing\u2014milk\u2019s a bit of a shapeshifter. One cup isn\u2019t always the same \u201cweight,\u201d even if it looks like the same volume. And if you\u2019re using milk for more than just pouring over cereal (which, let\u2019s be honest, you probably are), this matters more than you&#8217;d think.<\/p>\n<p>I\u2019ve seen home cooks totally throw off a custard recipe by using volume instead of weight. And in food production? Mislabeling milk content could land you in hot water with the FDA. Even on dairy farms, weight-based tracking is the standard\u2014not volume\u2014especially when you\u2019re dealing in gallons.<\/p>\n<p>What throws people off is that milk density changes. Whole milk weighs more than skim. Cold milk weighs a bit more than warm. And because recipes, nutrition labels, and food packaging use U.S. customary units, having a tool that accounts for that density is, well, kind of non-negotiable.<\/p>\n<h2>How Much Does Milk Weigh? (U.S. Units)<\/h2>\n<p>So let\u2019s cut to it. If you\u2019re working in U.S. measurements:<\/p>\n<ul>\n<li>1 cup of whole milk weighs about 8.6 ounces (by weight, not volume).<\/li>\n<li>1 gallon of milk? Roughly 8.6 pounds.<\/li>\n<\/ul>\n<p>But wait\u2014it varies. Here\u2019s a quick breakdown I\u2019ve built over time from my own kitchen notes and USDA data:<\/p>\n<table>\n<thead>\n<tr>\n<th>Volume<\/th>\n<th>Whole Milk (oz\/lb)<\/th>\n<th>2% Milk (oz\/lb)<\/th>\n<th>Skim Milk (oz\/lb)<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>1\/4 cup<\/td>\n<td>2.15 oz<\/td>\n<td>~2.10 oz<\/td>\n<td>~2.07 oz<\/td>\n<\/tr>\n<tr>\n<td>1\/2 cup<\/td>\n<td>4.3 oz<\/td>\n<td>~4.2 oz<\/td>\n<td>~4.1 oz<\/td>\n<\/tr>\n<tr>\n<td>1 cup<\/td>\n<td>8.6 oz \/ 0.54 lb<\/td>\n<td>~8.4 oz \/ 0.525 lb<\/td>\n<td>~8.2 oz \/ 0.512 lb<\/td>\n<\/tr>\n<tr>\n<td>1 pint (2 cups)<\/td>\n<td>17.2 oz \/ 1.075 lb<\/td>\n<td>~16.8 oz \/ 1.05 lb<\/td>\n<td>~16.4 oz \/ 1.025 lb<\/td>\n<\/tr>\n<tr>\n<td>1 quart (4 cups)<\/td>\n<td>34.4 oz \/ 2.15 lb<\/td>\n<td>~33.6 oz \/ 2.1 lb<\/td>\n<td>~32.8 oz \/ 2.05 lb<\/td>\n<\/tr>\n<tr>\n<td>1 gallon (16 cups)<\/td>\n<td>137.6 oz \/ 8.6 lb<\/td>\n<td>~134.4 oz \/ 8.4 lb<\/td>\n<td>~131.2 oz \/ 8.2 lb<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>Now, this isn\u2019t lab-grade precision\u2014but it\u2019s close enough for real-world use, especially if you\u2019re working in American kitchens or commercial environments. And yes, I\u2019ve had moments where rounding up or down by 0.1 oz mattered in a dairy-based sauce.<\/p>\n<h2>Milk Alternatives: Do They Weigh the Same?<\/h2>\n<p>Not at all.<\/p>\n<p>Almond milk, oat milk, soy milk\u2014they\u2019re all lighter than dairy milk. And even between brands, the weight can shift depending on how much water they use or whether it\u2019s a barista blend.<\/p>\n<ul>\n<li>Oat milk tends to be the heaviest (closer to dairy), especially thicker blends.<\/li>\n<li>Almond milk is usually light\u2014sometimes under 8 oz per cup.<\/li>\n<li>Soy milk is somewhere in the middle.<\/li>\n<\/ul>\n<p>If you&#8217;re using these in a recipe that depends on weight\u2014say, custards or baked goods\u2014it\u2019s worth checking. Or just use the calculator with the right milk type if it supports it.<\/p>\n<h2>Real-Life Applications in the U.S.<\/h2>\n<p>You might be surprised where this comes in handy:<\/p>\n<ul>\n<li>In recipes. If a New York cheesecake calls for 32 ounces of milk, and you only have a measuring cup\u2014this tool\u2019s your best friend.<\/li>\n<li>On the farm. Tracking daily yield? Pounds matter, not volume. It&#8217;s the standard in commercial dairying.<\/li>\n<li>Food labels. The FDA requires nutrition info per weight, not volume. So even if a carton says \u201c1 cup,\u201d the label has to calculate based on actual weight.<\/li>\n<\/ul>\n<p>I\u2019ve worked with folks in test kitchens who\u2019ve had to redo entire nutritional panels because they assumed a cup of milk always weighed 8 oz. (It doesn\u2019t.)<\/p>\n<h2>FAQs: Milk Weight &amp; Conversion<\/h2>\n<p>Q: How much does a gallon of milk weigh in pounds?<br \/>\nRoughly 8.6 pounds if it\u2019s whole milk, at fridge temp.<\/p>\n<p>Q: Can I convert milk without a scale?<br \/>\nYes, with a calculator that factors in milk density. Don\u2019t eyeball it unless it\u2019s for cereal.<\/p>\n<p>Q: Is whole milk heavier than 2%?<br \/>\nIt depends, but yes, usually by a small margin. The fat content slightly reduces density, but in real-world measurements, whole milk ends up heavier.<\/p>\n<p>Q: How many ounces in a gallon of milk?<br \/>\nIn volume: 128 fluid ounces. In weight: about 137.6 ounces, if it\u2019s whole milk.<\/p>\n<p>Q: Can I just assume 1 cup = 8 oz?<br \/>\nOnly for water. For milk, it\u2019s closer to 8.6 oz (by weight). That 0.6 matters in precision baking.<\/p>\n<h2>Milk Weight Conversion Chart<\/h2>\n<p>If you prefer a visual reference\u2014or you just like printables taped to your fridge\u2014here\u2019s a simplified chart you can screenshot or turn into a cheat sheet:<\/p>\n<table>\n<thead>\n<tr>\n<th>Volume<\/th>\n<th>Whole Milk (oz\/lb)<\/th>\n<th>2% Milk (oz\/lb)<\/th>\n<th>Skim Milk (oz\/lb)<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>1\/4 cup<\/td>\n<td>2.15 oz<\/td>\n<td>2.10 oz<\/td>\n<td>2.07 oz<\/td>\n<\/tr>\n<tr>\n<td>1\/2 cup<\/td>\n<td>4.3 oz<\/td>\n<td>4.2 oz<\/td>\n<td>4.1 oz<\/td>\n<\/tr>\n<tr>\n<td>1 cup<\/td>\n<td>8.6 oz \/ 0.54 lb<\/td>\n<td>8.4 oz \/ 0.525 lb<\/td>\n<td>8.2 oz \/ 0.512 lb<\/td>\n<\/tr>\n<tr>\n<td>1 gallon<\/td>\n<td>137.6 oz \/ 8.6 lb<\/td>\n<td>134.4 oz \/ 8.4 lb<\/td>\n<td>131.2 oz \/ 8.2 lb<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>Do I keep a laminated version in my kitchen drawer? Yep. Don\u2019t judge.<\/p>\n<h2>Final Thought<\/h2>\n<p>At first, it might seem like a tiny detail\u2014converting milk volume to weight. But the more I\u2019ve worked with recipes, regulations, and real kitchens, the more I\u2019ve realized how important it is to get this right.<\/p>\n<p>So, if you\u2019re working with milk regularly? Bookmark that calculator. Or better yet\u2014save this guide, and tape the chart to your fridge like I did.<\/p>\n<p>Because the next time you&#8217;re halfway through a recipe and it calls for 16 oz of milk? You\u2019ll know exactly what that means.<\/p>\n<\/article>\n<h2>Using the Milk Weight Calculator Tool<\/h2>\n<p>Alright, you\u2019ve got your milk. You\u2019ve got your volume. Now what?<\/p>\n<p>Here\u2019s how the tool usually works (and how I use it):<\/p>\n<ol>\n<li>Pick your milk type. Whole, 2%, skim, or even plant-based if that\u2019s your thing.<\/li>\n<li>Enter your volume. Whether it\u2019s cups, quarts, or gallons\u2014U.S. units only, by the way.<\/li>\n<li>Hit calculate. Boom\u2014instant weight in ounces or pounds.<\/li>\n<\/ol>\n<p>Most calculators will show real-time conversion. Some even let you flip the direction\u2014like \u201cI have 3 pounds of milk, how many quarts is that?\u201d<\/p>\n<p>It&#8217;s fast, and more accurate than eyeballing a conversion chart while your b\u00e9chamel curdles on the stove (yes, that happened to me once).<\/p>\n<h2>Common Mistakes When Measuring Milk<\/h2>\n<p>Now, this section? Based on pure experience\u2014and a few facepalms.<\/p>\n<ul>\n<li>Mixing up fluid ounces and weight ounces. They\u2019re not interchangeable. One\u2019s a measure of volume, the other of mass.<\/li>\n<li>Using metric with U.S. recipes. If your recipe calls for \u201c1 cup,\u201d don\u2019t convert it to 250 mL and expect things to turn out the same.<\/li>\n<li>Assuming all milk types weigh the same. They don\u2019t. Even lactose-free milk is slightly denser than regular, weirdly enough.<\/li>\n<\/ul>\n<p>One of the worst mistakes I made? Using a scale set to grams while thinking in ounces. That was a fun cake fail.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>&nbsp; You ever stand in the kitchen, holding a measuring cup full of milk, wondering why your recipe says \u201c8 ounces\u201d but you\u2019re staring at \u201c1 cup\u201d like&#8230; aren\u2019t they the same thing? I\u2019ve been there too. And if you&#8217;re working with milk regularly\u2014whether you&#8217;re baking at home, managing a dairy farm, or labeling food [&#8230;]\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[184],"tags":[],"class_list":["post-1678","post","type-post","status-publish","format-standard","hentry","category-calculator"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.0 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Milk Weight Calculator - DonHit<\/title>\n<meta name=\"description\" content=\"A milk weight calculator operates by combining key data inputs such as volume, temperature, and fat content to accurately compute the weight of milk.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/donhit.com\/en\/calculator\/milk-weight\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Milk Weight Calculator - DonHit\" \/>\n<meta property=\"og:description\" content=\"A milk weight calculator operates by combining key data inputs such as volume, temperature, and fat content to accurately compute the weight of milk.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/donhit.com\/en\/calculator\/milk-weight\/\" \/>\n<meta property=\"og:site_name\" content=\"DonHit - World of Tools\" \/>\n<meta property=\"article:published_time\" content=\"2026-04-02T07:00:09+00:00\" \/>\n<meta name=\"author\" content=\"DonHit\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"DonHit\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Milk Weight Calculator - DonHit","description":"A milk weight calculator operates by combining key data inputs such as volume, temperature, and fat content to accurately compute the weight of milk.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/donhit.com\/en\/calculator\/milk-weight\/","og_locale":"en_US","og_type":"article","og_title":"Milk Weight Calculator - DonHit","og_description":"A milk weight calculator operates by combining key data inputs such as volume, temperature, and fat content to accurately compute the weight of milk.","og_url":"https:\/\/donhit.com\/en\/calculator\/milk-weight\/","og_site_name":"DonHit - World of Tools","article_published_time":"2026-04-02T07:00:09+00:00","author":"DonHit","twitter_card":"summary_large_image","twitter_misc":{"Written by":"DonHit","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/donhit.com\/en\/calculator\/milk-weight\/#article","isPartOf":{"@id":"https:\/\/donhit.com\/en\/calculator\/milk-weight\/"},"author":{"name":"DonHit","@id":"https:\/\/donhit.com\/en\/#\/schema\/person\/0c6ff7dcd8ba4810c56a532f09c33148"},"headline":"Milk Weight Calculator","datePublished":"2026-04-02T07:00:09+00:00","mainEntityOfPage":{"@id":"https:\/\/donhit.com\/en\/calculator\/milk-weight\/"},"wordCount":1355,"commentCount":0,"publisher":{"@id":"https:\/\/donhit.com\/en\/#\/schema\/person\/0c6ff7dcd8ba4810c56a532f09c33148"},"articleSection":["Calculator"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/donhit.com\/en\/calculator\/milk-weight\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/donhit.com\/en\/calculator\/milk-weight\/","url":"https:\/\/donhit.com\/en\/calculator\/milk-weight\/","name":"Milk Weight Calculator - DonHit","isPartOf":{"@id":"https:\/\/donhit.com\/en\/#website"},"datePublished":"2026-04-02T07:00:09+00:00","description":"A milk weight calculator operates by combining key data inputs such as volume, temperature, and fat content to accurately compute the weight of milk.","breadcrumb":{"@id":"https:\/\/donhit.com\/en\/calculator\/milk-weight\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/donhit.com\/en\/calculator\/milk-weight\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/donhit.com\/en\/calculator\/milk-weight\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Trang ch\u1ee7","item":"https:\/\/donhit.com\/en\/"},{"@type":"ListItem","position":2,"name":"Calculator","item":"https:\/\/donhit.com\/en\/category\/calculator\/"},{"@type":"ListItem","position":3,"name":"Milk Weight Calculator"}]},{"@type":"WebSite","@id":"https:\/\/donhit.com\/en\/#website","url":"https:\/\/donhit.com\/en\/","name":"DonHit - World of tools","description":"","publisher":{"@id":"https:\/\/donhit.com\/en\/#\/schema\/person\/0c6ff7dcd8ba4810c56a532f09c33148"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/donhit.com\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/donhit.com\/en\/#\/schema\/person\/0c6ff7dcd8ba4810c56a532f09c33148","name":"DonHit","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/donhit.com\/en\/#\/schema\/person\/image\/","url":"https:\/\/donhit.com\/en\/wp-content\/uploads\/2024\/11\/logo-donhit.webp","contentUrl":"https:\/\/donhit.com\/en\/wp-content\/uploads\/2024\/11\/logo-donhit.webp","width":400,"height":267,"caption":"DonHit"},"logo":{"@id":"https:\/\/donhit.com\/en\/#\/schema\/person\/image\/"},"description":"DonHit is a website designed to provide useful tools for everyone. Its primary goal is to support and empower the community. All the tools available on the site are completely free to use.","sameAs":["https:\/\/donhit.com\/en"],"url":"https:\/\/donhit.com\/en\/author\/admin_don\/"}]}},"_links":{"self":[{"href":"https:\/\/donhit.com\/en\/wp-json\/wp\/v2\/posts\/1678","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/donhit.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/donhit.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/donhit.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/donhit.com\/en\/wp-json\/wp\/v2\/comments?post=1678"}],"version-history":[{"count":10,"href":"https:\/\/donhit.com\/en\/wp-json\/wp\/v2\/posts\/1678\/revisions"}],"predecessor-version":[{"id":3756,"href":"https:\/\/donhit.com\/en\/wp-json\/wp\/v2\/posts\/1678\/revisions\/3756"}],"wp:attachment":[{"href":"https:\/\/donhit.com\/en\/wp-json\/wp\/v2\/media?parent=1678"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/donhit.com\/en\/wp-json\/wp\/v2\/categories?post=1678"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/donhit.com\/en\/wp-json\/wp\/v2\/tags?post=1678"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}