Convert between ancient biblical units like cubits, reeds, hands, and furlongs to modern equivalents such as meters, feet, and miles with this easy-to-use historical measurement converter.
Convert between ancient biblical units of length and their modern equivalents. Select your units, enter a value, and see the conversion result instantly.
1 cubit × (0.4572 m/cubit) ÷ (1 m/meter) = 0.4572 meter
Ancient biblical units of measurement varied across different cultures and time periods. Here are some common units:
The Ancient Biblical Unit Converter is a specialized tool designed to bridge the gap between historical measurements and their modern equivalents. Throughout history, civilizations developed unique systems of measurement based on the human body and everyday objects. Biblical texts reference measurements like cubits, spans, and reeds, which can be challenging to visualize in today's metric and imperial systems. This comprehensive converter allows you to instantly translate between ancient biblical units such as cubits, reeds, and hands, and modern measurements like meters, feet, and miles.
Whether you're a biblical scholar researching ancient architecture, a history enthusiast exploring historical texts, or simply curious about how the measurements in ancient scriptures translate to modern units, this converter provides accurate, instant conversions with additional context about each unit's historical significance.
Ancient measurements varied considerably across different civilizations and time periods. Biblical units were primarily based on human body parts or common objects, making them intuitive but variable. Here's a detailed explanation of the most significant biblical and ancient units included in our converter:
The cubit is perhaps the most frequently mentioned measurement unit in biblical texts, appearing in descriptions of Noah's Ark, Solomon's Temple, and many other significant structures.
The reed was used for longer measurements, particularly in architectural contexts like Ezekiel's vision of the temple.
The span appears in descriptions of the high priest's breastplate and other ceremonial items.
The handbreadth was used for smaller, more precise measurements.
The smallest unit of length mentioned in biblical texts.
Mentioned in the New Testament, particularly in nautical contexts.
A Greek unit of length mentioned in the New Testament.
A distance limit for travel on the Sabbath according to Jewish tradition.
A rough measurement of distance traveled in one day.
Our Ancient Biblical Unit Converter uses a standardized approach to ensure accurate conversions between all units. The conversion process follows these steps:
The general conversion formula is:
For example, to convert 5 cubits to feet:
Unit | Equivalent in Meters | Equivalent in Feet |
---|---|---|
Cubit | 0.4572 | 1.5 |
Reed | 2.7432 | 9 |
Span | 0.2286 | 0.75 |
Handbreadth | 0.0762 | 0.25 |
Fingerbreadth | 0.01905 | 0.0625 |
Fathom | 1.8288 | 6 |
Stadion | 185 | 607 |
Sabbath Day's Journey | 1000 | 3281 |
Day's Journey | 30000 | 98425 |
Our converter is designed to be intuitive and straightforward. Follow these simple steps to convert between any ancient biblical unit and modern measurement:
Biblical Architecture: Converting the dimensions of Noah's Ark
Temple Measurements: Converting the dimensions of Solomon's Temple
Goliath's Height: Converting the height of Goliath
The Ancient Biblical Unit Converter serves various practical purposes across different fields and interests:
While our tool offers comprehensive biblical unit conversions, you might also consider:
Understanding the historical development of measurement systems provides valuable context for biblical unit conversions.
The measurement system used in biblical times evolved from practical needs in agriculture, construction, and trade. Early civilizations in Mesopotamia, Egypt, and the Levant developed systems based on readily available references—primarily the human body.
The Hebrew measurement system, reflected in the Old Testament, was influenced by Egyptian and Babylonian systems but developed its own characteristics. The basic unit, the cubit, was standardized to some extent but still varied across different periods and regions.
One of the greatest challenges in converting biblical measurements is the lack of absolute standardization. Variations existed:
Modern scholarship typically uses archaeological findings, comparative linguistics, and contextual analysis to establish the most likely equivalents for biblical units.
Answer: While our converter uses the most widely accepted equivalents based on archaeological and scholarly research, it's important to recognize that ancient measurements weren't standardized like modern units. Regional and temporal variations existed. Our conversions represent the best scholarly consensus but should be understood to have a margin of error of approximately ±5-10%.
Answer: The Bible references different types of cubits. The standard cubit was approximately 18 inches (45.72 cm), while the "long" cubit or "royal" cubit mentioned in Ezekiel 40:5 included an additional handbreadth, making it about 21 inches (52.4 cm). Our converter uses the standard cubit unless otherwise specified.
Answer: Ancient civilizations created physical standards—typically rods or sticks of specific lengths—that were kept in temples or government buildings as reference standards. In Egypt, cubit rods have been discovered in tombs. However, these standards still varied between regions and over time.
Answer: While some measurements in the Bible may have symbolic significance (especially in prophetic literature like Revelation), most measurements in historical and narrative passages were intended to be understood literally. However, some numbers may have been rounded or approximated.
Answer: Archaeological excavations of structures mentioned in the Bible, such as city gates, temples, and palaces, have often confirmed the general accuracy of biblical measurements. For example, excavations at sites like Megiddo, Hazor, and Jerusalem have revealed structures whose dimensions closely match biblical descriptions when converted using accepted values for the cubit.
Answer: While our converter focuses on units mentioned in biblical texts, many of these units were common throughout the ancient Near East. The converter can be useful for understanding measurements in other ancient texts from the region, though specific variations might exist.
Answer: For area conversions, you would square the length conversion factor. For example, a square cubit would be 0.4572² = 0.209 square meters. For volume, you would cube the conversion factor. Our current tool focuses on linear measurements, but these principles can be applied for area and volume.
Answer: The Bible doesn't specifically mention a "mile" in the Old Testament. In the New Testament, the Greek word "milion" refers to the Roman mile, which was about 1,480 meters (slightly shorter than the modern mile of 1,609 meters). The Jewish "mil" from the Talmudic period was based on 2,000 cubits, approximately 914 meters.
Answer: For longer distances, ancient people used time-based measurements such as a "day's journey" (approximately 20-30 miles or 30-45 kilometers) or a "three-day journey." These were practical measurements based on typical travel capabilities rather than precise distances.
Answer: No, ancient measurements were inherently less precise than modern standardized units. They were practical rather than scientific, and small variations were accepted. This is why our converter provides results with appropriate precision levels rather than excessive decimal places that would imply greater accuracy than actually existed.
1function convertBiblicalUnit(value, fromUnit, toUnit) {
2 // Conversion factors to meters
3 const unitToMeters = {
4 cubit: 0.4572,
5 reed: 2.7432,
6 span: 0.2286,
7 hand: 0.1016,
8 fingerbreadth: 0.01905,
9 fathom: 1.8288,
10 furlong: 201.168,
11 stadion: 185,
12 sabbathDay: 1000,
13 dayJourney: 30000,
14 meter: 1,
15 centimeter: 0.01,
16 kilometer: 1000,
17 inch: 0.0254,
18 foot: 0.3048,
19 yard: 0.9144,
20 mile: 1609.344
21 };
22
23 // Convert to meters first, then to target unit
24 const valueInMeters = value * unitToMeters[fromUnit];
25 const result = valueInMeters / unitToMeters[toUnit];
26
27 return result;
28}
29
30// Example: Convert 6 cubits to feet
31const cubits = 6;
32const feet = convertBiblicalUnit(cubits, 'cubit', 'foot');
33console.log(`${cubits} cubits = ${feet.toFixed(2)} feet`);
34
1def convert_biblical_unit(value, from_unit, to_unit):
2 # Conversion factors to meters
3 unit_to_meters = {
4 "cubit": 0.4572,
5 "reed": 2.7432,
6 "span": 0.2286,
7 "hand": 0.1016,
8 "fingerbreadth": 0.01905,
9 "fathom": 1.8288,
10 "furlong": 201.168,
11 "stadion": 185,
12 "sabbath_day": 1000,
13 "day_journey": 30000,
14 "meter": 1,
15 "centimeter": 0.01,
16 "kilometer": 1000,
17 "inch": 0.0254,
18 "foot": 0.3048,
19 "yard": 0.9144,
20 "mile": 1609.344
21 }
22
23 # Convert to meters first, then to target unit
24 value_in_meters = value * unit_to_meters[from_unit]
25 result = value_in_meters / unit_to_meters[to_unit]
26
27 return result
28
29# Example: Convert the height of Goliath (6 cubits and a span)
30goliath_height_cubits = 6.5 # 6 cubits and a span is approximately 6.5 cubits
31goliath_height_meters = convert_biblical_unit(goliath_height_cubits, "cubit", "meter")
32goliath_height_feet = convert_biblical_unit(goliath_height_cubits, "cubit", "foot")
33
34print(f"Goliath's height: {goliath_height_cubits} cubits = {goliath_height_meters:.2f} meters = {goliath_height_feet:.2f} feet")
35
1=IFERROR(IF(B2="cubit",0.4572,IF(B2="reed",2.7432,IF(B2="span",0.2286,IF(B2="hand",0.1016,IF(B2="fingerbreadth",0.01905,IF(B2="fathom",1.8288,IF(B2="furlong",201.168,IF(B2="stadion",185,IF(B2="sabbath_day",1000,IF(B2="day_journey",30000,IF(B2="meter",1,IF(B2="centimeter",0.01,IF(B2="kilometer",1000,IF(B2="inch",0.0254,IF(B2="foot",0.3048,IF(B2="yard",0.9144,IF(B2="mile",1609.344,0)))))))))))))))))),"Invalid unit")
2
1public class BiblicalUnitConverter {
2 private static final Map<String, Double> UNIT_TO_METERS = new HashMap<>();
3
4 static {
5 // Ancient units
6 UNIT_TO_METERS.put("cubit", 0.4572);
7 UNIT_TO_METERS.put("reed", 2.7432);
8 UNIT_TO_METERS.put("span", 0.2286);
9 UNIT_TO_METERS.put("hand", 0.1016);
10 UNIT_TO_METERS.put("fingerbreadth", 0.01905);
11 UNIT_TO_METERS.put("fathom", 1.8288);
12 UNIT_TO_METERS.put("furlong", 201.168);
13 UNIT_TO_METERS.put("stadion", 185.0);
14 UNIT_TO_METERS.put("sabbathDay", 1000.0);
15 UNIT_TO_METERS.put("dayJourney", 30000.0);
16
17 // Modern units
18 UNIT_TO_METERS.put("meter", 1.0);
19 UNIT_TO_METERS.put("centimeter", 0.01);
20 UNIT_TO_METERS.put("kilometer", 1000.0);
21 UNIT_TO_METERS.put("inch", 0.0254);
22 UNIT_TO_METERS.put("foot", 0.3048);
23 UNIT_TO_METERS.put("yard", 0.9144);
24 UNIT_TO_METERS.put("mile", 1609.344);
25 }
26
27 public static double convert(double value, String fromUnit, String toUnit) {
28 if (!UNIT_TO_METERS.containsKey(fromUnit) || !UNIT_TO_METERS.containsKey(toUnit)) {
29 throw new IllegalArgumentException("Unknown unit");
30 }
31
32 double valueInMeters = value * UNIT_TO_METERS.get(fromUnit);
33 return valueInMeters / UNIT_TO_METERS.get(toUnit);
34 }
35
36 public static void main(String[] args) {
37 // Example: Convert the dimensions of Noah's Ark
38 double arkLength = 300; // cubits
39 double arkWidth = 50; // cubits
40 double arkHeight = 30; // cubits
41
42 System.out.printf("Noah's Ark dimensions:%n");
43 System.out.printf("Length: %.2f cubits = %.2f meters = %.2f feet%n",
44 arkLength,
45 convert(arkLength, "cubit", "meter"),
46 convert(arkLength, "cubit", "foot"));
47 System.out.printf("Width: %.2f cubits = %.2f meters = %.2f feet%n",
48 arkWidth,
49 convert(arkWidth, "cubit", "meter"),
50 convert(arkWidth, "cubit", "foot"));
51 System.out.printf("Height: %.2f cubits = %.2f meters = %.2f feet%n",
52 arkHeight,
53 convert(arkHeight, "cubit", "meter"),
54 convert(arkHeight, "cubit", "foot"));
55 }
56}
57
Ackroyd, P. R., & Evans, C. F. (Eds.). (1970). The Cambridge History of the Bible. Cambridge University Press.
Powell, M. A. (1992). Weights and Measures. In D. N. Freedman (Ed.), The Anchor Bible Dictionary (Vol. 6, pp. 897-908). Doubleday.
Scott, J. F. (1958). A History of Mathematics: From Antiquity to the Beginning of the Nineteenth Century. Taylor & Francis.
Stern, E. (Ed.). (1993). The New Encyclopedia of Archaeological Excavations in the Holy Land. Israel Exploration Society & Carta.
Zondervan. (2009). Zondervan Illustrated Bible Dictionary. Zondervan.
Beitzel, B. J. (2009). The New Moody Atlas of the Bible. Moody Publishers.
Kitchen, K. A. (2003). On the Reliability of the Old Testament. Eerdmans.
Hoffmeier, J. K. (2008). The Archaeology of the Bible. Lion Hudson.
Rainey, A. F., & Notley, R. S. (2006). The Sacred Bridge: Carta's Atlas of the Biblical World. Carta.
Hoerth, A. J. (1998). Archaeology and the Old Testament. Baker Academic.
The Ancient Biblical Unit Converter bridges the gap between the measurements of antiquity and our modern understanding. By providing accurate conversions between biblical units like cubits, reeds, and spans and their modern equivalents, this tool helps bring ancient texts to life with greater clarity and context.
Whether you're a scholar, student, educator, or simply curious about biblical measurements, this converter offers a user-friendly way to translate between ancient and modern units. The historical context and explanations provided alongside the conversion tool enhance your understanding of not just the numbers, but the cultural and historical significance of these ancient measurement systems.
Try converting some biblical measurements today to gain a new perspective on the dimensions of ancient structures, the heights of biblical figures, or the distances traveled in biblical narratives. Understanding these measurements in familiar terms helps make ancient texts more accessible and meaningful to modern readers.
Discover more tools that might be useful for your workflow