Search for a tool
Babylonian Numerals

Tool to convert babylonian numbers (Babylonian Numerals). The Mesopotamian numeral system uses a mix of base 60 (sexagesimal) and base 10 (decimal) by writing wedges (vertical or corner wedge).

Results

Babylonian Numerals -

Tag(s) : Numeral System, History, Symbol Substitution

Share
Share
dCode and more

dCode is free and its tools are a valuable help in games, maths, geocaching, puzzles and problems to solve every day!
A suggestion ? a feedback ? a bug ? an idea ? Write to dCode!


Please, check our dCode Discord community for help requests!
NB: for encrypted messages, test our automatic cipher identifier!


Feedback and suggestions are welcome so that dCode offers the best 'Babylonian Numerals' tool for free! Thank you!

Babylonian Numerals

Converter From Babylonian Numbers 𒐕,π’Œ‹ β†’ 1,2,3

Converter To Babylonian Numbers 1,2,3 β†’ 𒐕,π’Œ‹







Answers to Questions (FAQ)

What are babylonian numbers? (Definition)

Babylonian numeration is a numbering system used by the ancient Babylonians/Sumerians in Mesopotamia to represent numbers. In mesopotamian/babylonian/sumerian number system, numbers are written in a cuneiform style with | (pipe or nail) and < (corner wedge or bracket), written in base 60 (sexagesimal).

How to write babylonian numbers?

The number is written in base 60, the 60 digits are broken down into vertical bars 𒐕 (often noted |) which are worth one unit (1) and chevrons π’Œ‹ (often noted <) which are worth ten (10) in base 10.

The power change of sixty ($ 60^1 = 60 $, $ 60^2 = 3600 $, $ 60^3 = 216000 $ etc.) is represented by an empty space.

Example: 23 is written with 2 tenths and 3 units so <<||| or char(66)char(51)

To convert a Babylonian number:

— Identify the positions (from right to left). Each position represents a power of $ 60 $

Multiply the value in each position by its power of $ 60 $

— Add the results to obtain the number in base $ 10 $

Example: A Babylonian number noted | |||| || (watch out for spaces), is broken down into || ($ 2 $) in the first position on the left, |||| ($ 4 $) in the second and | ($ 1 $) in the third is calculated as $ 2 \cdot 60^0 + 4 \cdot 60^1 + 1 \cdot 60^2 = 2 + 240 + 3600 = 3842 $

Since Unicode 5 (2006) cuneiform symbols can be represented on compatible browsers, here is the table of characters used by dCode:

𒐕1𒐖2𒐗3π’˜4𒐙5π’š6𒐛7
π’œ8𒐝9π’Œ‹10π’Ž™20π’Œ30𒐏40𒐐50
NB: The double chevron character π’Ž™ (20) has been forgotten in Unicode 5 (it existed as βŸͺ) and was added in Unicode 8 (2015) but may appear unknown (?) on some devices.

How to write the number zero 0?

Babylonians did not use the zero (this concept had not been invented), but from the 3rd century in Babylon, they used the symbol char(48) (as a writing separator for numbers)

How to convert babylonian numbers?

Converting is easy by counting symbols and considering it in base 60 to get numbers into classical Hindu-Arabic notation.

Example: <<||| is 2 < and 3 | so $ 2 \times 10 + 3 \times 1 = 23 $

Example: | | (note the space) is 1 | and then 1 | so $ 1 \times 60 + 1 = 61 $

How to convert from base 10 to base 60?

To convert a number $ n $ from base $ 10 $ to base $ b=60 $ apply the algorithm::

— Divide the decimal number by $ 60 $ and note the whole quotient as well as the remainder

— Repeat the process with the quotient until it is equal to $ 0 $

— Read the remainders obtained in reverse order to obtain the representation in base $ 60 $

// pseudo-code
function decimal_to_base60(n) {
q = n
b60 = []
while (q > 0) {
r = q mod 60
b60 []= r
q = q div 60
}
return b60
}

Example: $$ q_0 = 100 \\ r_0 = 100 \mbox{ mod } 60 = 40 \;\;\; q_1 = 100 \mbox{ div } 60 = 1 \\ r_1 = 1 \mbox{ mod } 60 = 1 \;\;\; q_2 = 0 \\ \Rightarrow \{1,0,0\}_{(10)} = \{1, 40\}_{(60)} $$

How to count using Babylonian numerals?

Babylonian numbers chart (base60)

0 (zero)char(48)1char(49)2char(50)3char(51)4char(52)
5char(53)6char(54)7char(55)8char(56)9char(57)
10char(65)11char(65)char(49)12char(65)char(50)13char(65)char(51)14char(65)char(52)
15char(65)char(53)16char(65)char(54)17char(65)char(55)18char(65)char(56)19char(65)char(57)
20char(66)21char(66)char(49)22char(66)char(50)23char(66)char(51)24char(66)char(52)
25char(66)char(53)26char(66)char(54)27char(66)char(55)28char(66)char(56)29char(66)char(57)
30char(67)31char(67)char(49)32char(67)char(50)33char(67)char(51)34char(67)char(52)
35char(67)char(53)36char(67)char(54)37char(67)char(55)38char(67)char(56)39char(67)char(57)
40char(68)41char(68)char(49)42char(68)char(50)43char(68)char(51)44char(68)char(52)
45char(68)char(53)46char(68)char(54)47char(68)char(55)48char(68)char(56)49char(68)char(57)
50char(69)51char(69)char(49)52char(69)char(50)53char(69)char(51)54char(69)char(52)
55char(69)char(53)56char(69)char(54)57char(69)char(55)58char(69)char(56)59char(69)char(57)

For other numbers, use the form above.

Why using the base 60?

60 has the advantage of having many divisors: 2, 3, 4, 5, 6, 10, 12, 15, 20, 30, and 60.

Today the time system of hours still uses the numerotation in base sixty: 60 seconds = 1 minute, 60 minutes = 1 hour = 3600 seconds

How to convert Babylonian numbers into roman numerals?

Convert the Babylonian numbers to Hindu-Arabic numerals (1,2,3,4,5,6,7,8,9,0), then use the Roman numeral converter of dCode.

What traces remain of Babylonian numbers?

Clay tablets played a crucial role in understanding Babylonian numbers, as they were the medium on which the ancient Babylonians wrote their numerations. These tablets have survived through the centuries, providing a valuable source of information about the numerical and mathematical systems of this civilization.

When are Babylonian numbers from?

Babylonian/Summerian numbers are thought to have been developed around 2000 BC.

Source code

dCode retains ownership of the "Babylonian Numerals" source code. Except explicit open source licence (indicated Creative Commons / free), the "Babylonian Numerals" algorithm, the applet or snippet (converter, solver, encryption / decryption, encoding / decoding, ciphering / deciphering, breaker, translator), or the "Babylonian Numerals" functions (calculate, convert, solve, decrypt / encrypt, decipher / cipher, decode / encode, translate) written in any informatic language (Python, Java, PHP, C#, Javascript, Matlab, etc.) and all data download, script, or API access for "Babylonian Numerals" are not public, same for offline use on PC, mobile, tablet, iPhone or Android app!
Reminder : dCode is free to use.

Cite dCode

The copy-paste of the page "Babylonian Numerals" or any of its results, is allowed (even for commercial purposes) as long as you credit dCode!
Exporting results as a .csv or .txt file is free by clicking on the export icon
Cite as source (bibliography):
Babylonian Numerals on dCode.fr [online website], retrieved on 2025-02-04, https://www.dcode.fr/babylonian-numbers

Need Help ?

Please, check our dCode Discord community for help requests!
NB: for encrypted messages, test our automatic cipher identifier!

Questions / Comments

Feedback and suggestions are welcome so that dCode offers the best 'Babylonian Numerals' tool for free! Thank you!


https://www.dcode.fr/babylonian-numbers
© 2025 dCode — The ultimate 'toolkit' to solve every games / riddles / geocaching / CTF.
β–²  
Feedback