Convert fine table salt, Diamond Crystal kosher salt, Morton kosher salt, fine sea salt, and Maldon flaky salt across grams, teaspoons, and tablespoons.
| Salt Variety | Equivalent Volumetric Measure | Mass & Sodium Content |
|---|
Salt Conversion Chart is an interactive culinary utility developed for professional chefs, bakers, and home cooks to convert volumetric teaspoon, tablespoon, and mass gram measurements across different salt crystal structures. It computes density metrics for Fine Table Salt, Diamond Crystal Kosher Salt, Morton Kosher Salt, Fine Sea Salt, Maldon Flaky Sea Salt, and Himalayan Pink Salt inside client-side JavaScript memory.
A home cook in San Francisco follows a chef's cookbook recipe calling for 2 teaspoons of Diamond Crystal Kosher Salt to season a roasting chicken. The cook has no Diamond Crystal salt in the pantry, only a box of fine table salt. Measuring 2 teaspoons of fine table salt directly into the marinade delivers 12.0 grams of salt because dense cubic table salt crystals weigh 6.0 grams per teaspoon. The recipe intended 2 teaspoons of Diamond Crystal kosher salt, which weighs only 6.6 grams total across 2 teaspoons due to hollow pyramid crystal structures. Over-salting by 5.4 grams makes the roasted chicken inedibly salty.
Selecting 2 teaspoons of Diamond Crystal Kosher Salt and choosing Fine Table Salt as the target substitution in this converter displays the exact adjusted volume: 1.1 teaspoons (6.6 grams). Converting salt measurements by mass guarantees accurate dough fermentation, meat brining, and seasoned soup broths without salty ruin.
Culinary salts vary dramatically in bulk density ($\rho_{bulk}$) despite sharing identical chemical formulas ($\text{NaCl}$). Open-kettle evaporation yields Diamond Crystal kosher salt with light, hollow pyramid flakes that stack loosely with large air gaps (density 0.66 g/ml / 3.3g/tsp). Roller compression yields Morton kosher salt with dense flat flakes (density 0.96 g/ml / 4.8g/tsp). Fine table salt consists of compact cubic crystals (density 1.20 g/ml / 6.0g/tsp). Because of these structural variations, 1 teaspoon of table salt contains nearly double the mass of 1 teaspoon of Diamond Crystal kosher salt.
When you input a quantity, select a source unit, choose a source salt variety, and select a target substitution variety, the converter executes a crystal density algorithm. Step one normalizes the source input into absolute mass grams ($m$). If the input is volumetric (teaspoons or tablespoons), it multiplies volume by source variety density ($\rho_{source}$).
Step two calculates elemental sodium content: pure sodium chloride contains 39.3 percent elemental sodium by weight ($m_{Na} = m \times 0.393$). Step three computes equivalent target volume by dividing total mass by target variety density ($\rho_{target}$). Step four generates a comparative substitution matrix across all major salt classifications.
The core salt conversion engine runs in client-side JavaScript:
// Crystal density salt conversion calculation function
function computeSaltSpecs(qty, unitKey, sourceKey, targetKey) {
const saltDensityMap = {
table_fine: 1.200, // 6.0g per 5ml tsp
diamond_kosher: 0.660, // 3.3g per 5ml tsp
morton_kosher: 0.960, // 4.8g per 5ml tsp
sea_fine: 1.200, // 6.0g per 5ml tsp
maldon_flaky: 0.540, // 2.7g per 5ml tsp
himalayan_pink: 1.140 // 5.7g per 5ml tsp
};
const unitMlMap = { tsp: 5, tbsp: 15, grams: 1, ounces: 28.3495 };
const srcDensity = saltDensityMap[sourceKey] || 1.200;
const tgtDensity = saltDensityMap[targetKey] || 0.660;
let totalGrams = 0;
if (unitKey === 'grams') totalGrams = qty;
else if (unitKey === 'ounces') totalGrams = qty * 28.3495;
else totalGrams = qty * (unitMlMap[unitKey] || 5) * srcDensity;
const targetTsps = totalGrams / (5 * tgtDensity);
const sodiumMg = totalGrams * 393.3; // 393.3 mg Na per gram NaCl
return { grams: totalGrams.toFixed(2), targetTsps: targetTsps.toFixed(2), sodiumMg: Math.round(sodiumMg) };
}
Sodium ($Na^+$) and chloride ($Cl^-$) ions penetrate meat muscle tissues during brining via osmotic pressure. A 1.5 to 2.0 percent salt concentration dissolves myofibrillar proteins (myosin and actin), expanding muscle protein structures to trap water molecules during oven roasting and preventing meat dry-out.
Professional Chef Cookbook Recipe Scaling: Convert restaurant recipes using Diamond Crystal kosher salt into table salt or Morton kosher salt for home kitchens.
Artisan Sourdough Bread Salinity: Calculate precise 2.0% dough salt mass in grams (e.g., 20g salt per 1000g flour) to regulate yeast fermentation speed.
Poultry & Meat Brining Calculations: Compute dry brine salt mass per pound of meat (typically 1/2 teaspoon kosher salt per pound) for crispy turkey skin.
Dietary Sodium Management: Track exact milligram elemental sodium intake across different salt volume additions in daily meal prep logs.
Pastry & Caramel Balancing: Scale flaky Maldon sea salt pinches to finish chocolate tarts without causing localized salty pockets.
Fermentation & Pickling Brines: Calculate exact 2.5% to 3.5% wet brine salt weights for sauerkraut and dill pickle fermentations.
Always weigh salt on a digital kitchen scale for bread baking. Volumetric teaspoon measuring of salt introduces up to 25 percent error due to crystal settling. Weighing salt in grams guarantees consistent yeast control and bread flavor.
Use Diamond Crystal Kosher Salt for general cooking seasoning. Professional chefs prefer Diamond Crystal because its light pyramid flakes crush easily between fingertips, providing tactile control that reduces risk of over-salting.
Do not substitute table salt 1-to-1 for kosher salt by volume. One teaspoon of fine table salt (6.0g) contains nearly twice the salt mass of 1 teaspoon of Diamond Crystal kosher salt (3.3g). Substituting 1-to-1 by volume ruins dishes with harsh salinity.
Dissolve coarse sea salt completely in liquid before tasting. Coarse salt crystals dissolve slowly in cold liquids. Stir salted soups and salad dressings thoroughly for 1 minute before testing seasoning to avoid false low-salt impressions.
Use flaky Maldon sea salt exclusively as a finishing salt. Delicate Maldon pyramid flakes dissolve instantly on the tongue, creating crunchy bursts of clean salinity. Dissolving Maldon salt into boiling pasta water wastes expensive finishing salt.
Store anti-caking salt in dry pantry environments. Table salt contains anti-caking additives like calcium silicate. Kosher salt lacks additives and absorbs ambient humidity, forming hard clumps. Store salt in sealed glass or ceramic salt cellars.
Crystal density solver: Mass calculated via physical bulk density constants ($m = V_{ml} \times \rho_{crystal}$). Output formatted in grams, milligrams, elemental sodium mg, teaspoons, tablespoons, and brand substitution ratios.
Calculations execute within 0.1 milliseconds in client-side JavaScript memory without external network requests.
100 percent local browser execution. No salt selections, recipes, or user data are stored or transmitted online.
Fully compliant with modern ECMAScript 5+ standards across Chrome, Safari, Firefox, Edge, and mobile web clients.
| Feature | This Tool | Generic Salt Chart | Packaging Table |
|---|---|---|---|
| Calculation Speed | < 1 ms | Manual lookup | Visual estimate |
| Salt Varieties | 6 Specific brand densities | Table vs Kosher generic | Single brand only |
| Sodium Metric | Calculates exact elemental Na (mg) | Ignored | Per 1/4 tsp serving only |
| Brand Cross-Substitution | Direct 1-click brand matrix | Single conversion factor | None |
Use 1.8 teaspoons (approx. 1 3/4 tsp) of Diamond Crystal Kosher Salt to equal 1 teaspoon of Fine Table Salt by weight (6 grams).
Use 1.3 teaspoons (approx. 1 1/4 tsp) of Morton Kosher Salt to equal 1 teaspoon of Fine Table Salt by weight (6 grams).
Diamond Crystal kosher salt is produced via open-kettle evaporation, creating light, hollow pyramid flakes that weigh only 3.3 grams per teaspoon. Morton kosher salt is produced via roller compression, creating dense flat flakes weighing 4.8 grams per teaspoon.
Pure sodium chloride (NaCl) consists of 40% sodium and 60% chloride by mass. One gram of pure table salt contains approximately 393 milligrams of elemental sodium.
Yes. Fine sea salt and fine table salt have nearly identical grain size and bulk density (approx. 6 grams per teaspoon), allowing direct 1-to-1 volumetric substitution.
Tablespoon to Gram Converter - Convert small volume tablespoon and teaspoon additions into grams.
Cup to Gram Converter - Convert flour, sugar, butter, and liquid ingredients.
Spice Conversion Chart - Volume to weight conversions for whole seeds and ground spices.