रोमन अंक कन्व्हर्टर
नवीनसंख्या रोमन अंकांमध्ये आणि परत, व्हॅलिडेशनसह रूपांतरित करा.
The overline (vinculum) multiplies a numeral by 1,000 — for example V̅ = 5,000 and X̅ = 10,000.
Runs entirely in your browser. Nothing is uploaded.
Convert numbers, dates and years to Roman numerals
This Roman numeral converter turns ordinary numbers into Roman numerals and decodes Roman numerals back into numbers — type in either box and the other updates instantly. Enter 2026 and you get MMXXVI; paste XLIX and you get 49. Every result is validated both ways, so malformed input like IIII or VX is caught and only a correct numeral is ever copied.
It is built for what people actually search for: years, dates, clock faces, book chapters, Super Bowl numbers, and — most of all — tattoos. No sign-up, no file upload, nothing sent to a server.
How Roman numerals work
Roman numerals use seven letters: I=1, V=5, X=10, L=50, C=100, D=500 and M=1000. You build a number by writing these from largest to smallest and adding them up, so 2000 is MM and 60 is LX. When a smaller symbol sits directly before a larger one it is subtracted — this is subtractive notation, and it gives the six special pairs IV=4, IX=9, XL=40, XC=90, CD=400 and CM=900.
No symbol repeats more than three times, which is why 4 is IV rather than IIII, and 1999 is MCMXCIX rather than MIM. The converter applies all of these rules automatically and breaks down the result so you can see exactly how each piece adds up.
Dates and birthdays — made for tattoos
The Date tab converts a full date by translating the day, month and year separately and joining them with a separator. A birthday of 14 July 1990 becomes XIV · VII · MCMXC, and you can switch between day-month-year and US month-day-year order or change the separator to a slash, dash or the classic middot (·).
That makes this a practical roman numeral date converter for anniversaries, wedding dates and birth years — the most common reason people search for Roman numeral tools. Press Today to convert the current date in one click, then copy it straight to your phone for your tattoo artist.
Big numbers and the vinculum (overline)
Standard Roman numerals stop at 3999 (MMMCMXCIX) because M cannot repeat more than three times. To go higher the Romans drew a vinculum — a bar over a numeral that multiplies it by 1,000. So an overlined V is 5,000 and an overlined X is 10,000.
This converter supports values all the way to 3,999,999 and renders the overline automatically for anything 4,000 and above. Most other converters — including the ones on rapidtables.com and calculatorsoup.com — cap at 3,999 and leave you without a way to convert larger numbers.
How UtiloKit compares to other Roman numeral converters
rapidtables.com offers a basic single-field converter with a reference chart but no date formatting and no way to generate a tattoo-ready date string. calculatorsoup.com adds a lookup table but the interface is ad-heavy and doesn't do round-trip validation. dcode.fr has a French-language converter that supports overlines but lacks the date tab and mobile-optimised layout.
UtiloKit handles the whole workflow in one place: number ↔ Roman, full date conversion with separator and order choices, large-number vinculum support, and a quick reference chart — all without ads, without sign-up, and without sending anything to a server.
Private, instant and offline
Everything happens in your browser. The numbers, years and dates you convert are never uploaded, logged or shared, and once the page has loaded the tool keeps working with no internet connection. There is no sign-up and no cost — bookmark the roman numeral converter and reach for it whenever you need to convert a number, decode a numeral or design a date for a tattoo.
A brief history: why IIII still appears on clock faces
Subtractive notation — writing IV instead of IIII — was not part of the original Roman system. Early Rome and the Roman Republic used additive-only forms: four was IIII, nine was VIIII, and forty was XXXX. The compact subtractive pairs we recognise today became standardised during the Middle Ages, when scribes and typesetters found them easier to read in dense manuscript text. A Roman soldier or merchant in 100 BCE would have written IIII as naturally as we write 4.
Clock faces are the most visible survival of the old additive convention. The overwhelming majority of analogue clocks and watches — from grandfather clocks to luxury Swiss dials — mark four o'clock as IIII rather than IV. The most likely reasons are visual symmetry (IIII balances the VIII directly opposite it on the dial), the fact that IV were the first two letters of IVPITER (Jupiter) and were considered inauspicious in some traditions, and the practical consideration that IIII uses the same four I punches a clockmaker had already cut for I, II, and III, reducing the need for a separate V punch at an awkward position. Whatever the origin, IIII on a clock face is not an error — it is a deliberate, centuries-old typographic convention.
Regnal numbering follows the stricter modern convention. King Henry VIII (eight) is always written VIII, not VIIIIIIIII. Monarchs, Popes, and Super Bowls all use the standardised subtractive form — which means XLVI (Super Bowl 46) or Pope John XXIII (23), never non-standard alternatives. Film copyright years are another prominent use: studios switched from printing the year in plain digits to Roman numerals in the 1960s partly to obscure a movie's age, though the practice is now mostly tradition.
How the conversion algorithm works
Converting a decimal integer to Roman numerals uses a greedy algorithm. You maintain an ordered value table — 1000, 900, 500, 400, 100, 90, 50, 40, 10, 9, 5, 4, 1 — paired with their Roman strings M, CM, D, CD, C, XC, L, XL, X, IX, V, IV, I. Starting with the largest value, you check whether it fits into the remaining number; if it does, you append the corresponding string and subtract the value. You repeat this until the remainder is zero. For 1994: 1000 fits (M, remainder 994), 900 fits (CM, remainder 94), 90 fits (XC, remainder 4), 4 fits (IV, remainder 0) — giving MCMXCIV.
The reverse direction — Roman numeral to decimal — uses a left-to-right comparison rule. Read each symbol and compare its value to the one immediately to its right. If the current symbol is less than the next one, subtract it; otherwise add it. For MCMXCIV: M(1000) > C(100) so add 1000; C(100) < M(1000) so subtract 100; M(1000) > X(10) so add 1000; X(10) < C(100) so subtract 10; C(100) > I(1) so add 100; I(1) < V(5) so subtract 1; V(5) is last so add 5 — total 1000−100+1000−10+100−1+5 = 1994. This two-pass logic is what this converter applies under the hood, along with validation that rejects non-canonical forms such as IC (use XCIX for 99) or VX (use V for 5).
Validation matters because Roman numerals have one canonical form for every integer. Any string that fails the greedy reconstruction test — where the greedy algorithm on its decimal value does not reproduce the original string — is invalid. That is how the converter catches common mistakes like IIII, IM, or MMMM and flags them before you copy a wrong numeral onto a gravestone or a tattoo.
System limits, fractions, and medieval extensions
The standard Roman numeral system has no zero, no negative numbers, and no decimal fractions. Zero was a concept the Romans borrowed late and awkwardly — the word nulla (nothing) appeared in manuscripts but never became a numeral symbol. This made Roman arithmetic significantly harder than the positional arithmetic we use today, and historians credit the eventual adoption of Hindu-Arabic numerals in medieval Europe partly to the Roman system's inability to handle zero elegantly in computation.
For fractions, Romans used a parallel duodecimal (base-12) system built on the uncia (one-twelfth, the origin of the words ounce and inch). Fractions of an as (a unit of weight and currency) were written with dots: one dot (·) = 1/12, two dots (··) = 2/12, and so on up to eleven-twelfths. The semis (S) represented one-half (6/12). This notation never merged with the letter-based integer system and is largely invisible today.
The upper limit of 3,999 (MMMCMXCIX) in standard notation comes from the rule that no symbol may repeat more than three consecutive times, and M is the largest base symbol. Medieval scribes invented two workarounds. The vinculum (an overline or bar) multiplied a numeral by 1,000: V̅ = 5,000, X̅ = 10,000, M̅ = 1,000,000. The apostrophus system used curved stroke combinations — ↀ for 1,000, ↁ for 5,000, ↂ for 10,000 — that could be stacked for even larger values. Neither system was ever fully standardised, so you will see inconsistencies across historical documents, but the vinculum is the convention most commonly reproduced in modern software and on this converter.
Roman numerals in computing and formal modern usage
Unicode encodes a dedicated Number Forms block at code points U+2160–U+2188 containing precomposed Roman numeral characters: Ⅰ (U+2160), Ⅱ (U+2161), Ⅲ (U+2162), and so on up to Ⅻ (U+216B) for 12, plus Ⅼ, Ⅽ, Ⅾ, Ⅿ and several less common forms including the rare Ↄ (reversed C, part of the apostrophus tradition). These code points exist for backwards compatibility with legacy East Asian character encodings — particularly JIS X 0213 and the various CNS 11643 planes — that included Roman numeral glyphs as single characters for use in numbered lists and outlines in Japanese and Chinese publishing. For almost all modern purposes you should use plain ASCII letters (I, V, X, L, C, D, M) rather than the Unicode Number Forms; they are visually identical in most fonts, universally supported, and vastly simpler to type and process.
In legal and academic publishing, Roman numerals carry strong conventions about scope. Lowercase roman numerals (i, ii, iii, iv …) number the front matter of a book — the preface, table of contents, and acknowledgements — while the main text resets to Arabic numerals at page 1. Uppercase Roman numerals number chapters, parts, and acts in plays (Act II, Scene III), major sections in legal codes and constitutions (Article XIV of the US Constitution; Title IX), and the preliminary clauses of treaties. In pharmaceutical prescriptions, a convention dating to medieval apothecary practice writes quantities in lowercase Roman numerals after the unit abbreviation — gr. v for five grains, ℥ ii for two ounces — though this practice has largely been replaced by Arabic numerals to reduce transcription errors.
Recurring numbered events that use Roman numerals do so to signal tradition and prestige. The Super Bowl adopted Roman numerals with Super Bowl V (1971) and used them continuously through Super Bowl XLIX before briefly switching to 50 in Arabic numerals — because L as a standalone word looked awkward in marketing — then returning to Roman for Super Bowl LI onward. The Olympic Games number their editions in Roman numerals on official literature. Monarch and papal regnal numbers (Charles III, Benedict XVI) follow strict subtractive notation and are among the most globally recognised uses of the system outside mathematics. Together these modern contexts explain why Roman numerals remain a live skill rather than a historical curiosity, and why a fast, accurate online converter continues to see daily use.
Frequently asked questions
How do I convert a number to Roman numerals?
Type the number into the Number field and the Roman numeral appears instantly beside it — for example 2026 becomes MMXXVI and 49 becomes XLIX. Roman numerals are built by adding symbols from largest to smallest (I=1, V=5, X=10, L=50, C=100, D=500, M=1000) and using a subtractive pair when a smaller symbol sits before a larger one (IV=4, IX=9, XL=40, XC=90, CD=400, CM=900). This converter does all of that automatically and validates the result both ways, so IIII or VX are rejected. Sites like rapidtables.com and calculatorsoup.com also offer converters but don't check for invalid input.
What is 1 to 10 in Roman numerals?
1–10 is I, II, III, IV, V, VI, VII, VIII, IX, X. So 1=I, 2=II, 3=III, 4=IV, 5=V, 6=VI, 7=VII, 8=VIII, 9=IX and 10=X. Notice 4 is IV (one before five) and 9 is IX (one before ten) — that is the subtractive rule, used instead of writing IIII or VIIII. The same pattern repeats at higher magnitudes: 40=XL, 90=XC, 400=CD, 900=CM.
What do II, V, and IX mean?
II is 2, V is 5 and IX is 9. II is two ones added together (1+1). V is the single symbol for five. IX is the subtractive form for nine: the I before the X means 'one less than ten' (10−1=9). The same pattern gives IV=4 and XL=40. When in doubt, paste any Roman numeral into the right-hand field here and you'll get the decimal value instantly — no need to memorise every combination.
How do I write a date in Roman numerals?
Convert the day, month and year separately, then join them with a separator. For 25 November 2026 the parts are 25=XXV, 11=XI and 2026=MMXXVI, so the date reads XXV · XI · MMXXVI in day-month-year order, or XI · XXV · MMXXVI in US month-day-year order. Open the Date tab, pick your order and separator (a middot · is the classic tattoo style), and copy the result. Unlike basic tools on rapidtables or calculatorsoup, the Date tab here converts the whole date in one step.
What is 2026 in Roman numerals?
2026 is MMXXVI. It breaks down as MM (2×1000=2000) + XX (2×10=20) + VI (5+1=6), which totals 2026. For reference, 2025 is MMXXV, 2024 is MMXXIV and 2000 is MM. This is one of the most-searched conversions because 2026 is a common birth year, anniversary year, and tattoo year.
How do Roman numerals work?
Seven letters carry every value: I=1, V=5, X=10, L=50, C=100, D=500 and M=1000. You write a number by stacking these from highest to lowest and adding them up, so 2000 is MM and 60 is LX. When a smaller symbol comes directly before a larger one it is subtracted instead, which is how IV=4, IX=9, XL=40 and CM=900 work. A symbol never repeats more than three times in a row — so 4 is always IV, never IIII.
What is the largest Roman numeral, and how do big numbers work?
In the standard system the largest value is 3999 = MMMCMXCIX, because M can only repeat three times. For larger numbers the Romans used a vinculum — an overline that multiplies a numeral by 1,000. So V̅ = 5,000, X̅ = 10,000, and 4,000 is written as an overlined IV. This converter handles values up to 3,999,999 and shows the overline for anything 4,000 and above, which is a feature most online converters including dcode.fr do not offer.
How do I convert a birth year to Roman numerals for a tattoo?
Enter the year in the Number field — 1990 becomes MCMXC, 1985 becomes MCMLXXXV and 2001 becomes MMI. For a full birth date use the Date tab to convert day, month and year together, e.g. 07·14·1990 → VII · XIV · MCMXC. Choose the middot separator for the clean stacked look most tattoo artists use, then copy it to send to your artist. Everything runs in the browser so no data is stored or uploaded.
What is 25, 11, and 100 in Roman numerals?
25 is XXV (10+10+5), 11 is XI (10+1) and 100 is C. Put together, the date 25/11 would be XXV · XI. The hundred is just a single letter C, which is why century numbering like 'the XIX century' (19th) is so compact — XIX = 10+10-1 = 19.
What is subtractive notation?
Subtractive notation is the rule that lets a smaller symbol placed before a larger one be subtracted from it, so you avoid four symbols in a row. The six valid pairs are IV=4, IX=9, XL=40, XC=90, CD=400 and CM=900. That is why 1999 is MCMXCIX (M + CM + XC + IX) and not MIM. Any input that uses a non-standard subtractive pair — like IC for 99 — is invalid and this converter will flag it.
What is "I love you" in Roman numerals?
Roman numerals represent numbers, not words, so 'I love you' has no literal numeral. The popular version uses 143 — the texting code from the letter counts of I (1), love (4) and you (3) — which is CXLIII in Roman numerals (C + XL + III). Couples also convert a meaningful date, such as an anniversary, using the Date tab to get a tattoo-ready result.
What date is XXIX?
XXIX is 29 (XX=20 plus IX=9). On its own it usually refers to the 29th day of a month or to edition/number 29 — for example Super Bowl XXIX was the 29th. Paste XXIX into the Roman field to confirm it converts back to 29. The converter also accepts lowercase xxix and normalises it automatically.
Why are Roman numerals still used?
They appear on clock and watch faces, in dates carved on buildings and on book copyright pages, in chapter and outline numbering, in monarch and Pope names (Elizabeth II, Louis XIV) and to number recurring events like the Olympics and the Super Bowl. They read as formal and timeless, which is also why they are popular for tattoos of birth dates and anniversaries.
Does this Roman numeral converter work on iPhone and Android?
Yes. The entire converter is built with standard browser technology and works on any phone or tablet. There is no app to download — open the page in Safari, Chrome or any mobile browser and it behaves like a native app. Input, conversion and the date formatter all work the same on mobile as on desktop. Once the page has loaded it even works offline, since no server requests are needed.
Related tools
सर्व टूल्स पाहाAspect Ratio कॅल्क्युलेटर
एक ratio लॉक करा आणि नवीन आकारासाठी गहाळ रुंदी किंवा उंची सोडवा.
संख्या ते शब्द
कोणतीही संख्या इंग्रजी शब्दांमध्ये स्पेल करा, cheques साठी currency mode सह.
वेळ कालावधी कॅल्क्युलेटर
दोन घड्याळ वेळांमधील वेळ शोधा आणि अनेक कालावधी जोडा.
टाइम झोन कन्व्हर्टर
शहरांमधील वेळेची तुलना करा आणि सर्वांना सोयीच्या मीटिंग्ज आखा.
Currency Converter
Convert between 30+ world currencies with recent reference rates — fully in your browser.
Scientific Calculator
Full scientific calculator with trig, log, factorial, powers and memory functions.