Quick answer: A Roman numeral converter changes numbers into Roman numerals and back, for values 1 to 3,999. It uses seven letters — I=1, V=5, X=10, L=50, C=100, D=500, M=1000 — combined by addition and subtraction, so IV is 4 and IX is 9. For example, 2026 is MMXXVI. Free and instant.
Math 🇺🇸 USA 🇬🇧 UK Metric Imperial Live Results

Roman Numeral Converter

Convert Arabic numbers to Roman numerals and back with live results.

Calculate

Roman Numeral Converter

Live 2026
United States view for roman numeral converter. Change any value to update the result and charts live.
Enter a number from 1 to 3999.
Or enter a Roman numeral.
United Kingdom view for roman numeral converter. Change any value to update the result and charts live.
Enter a number from 1 to 3999.
Or enter a Roman numeral.

Your Results

Ready
CONVERTED VALUE
Enter your details above to calculate
Breakdown Chart
Distribution
Breakdown Table

Roman Numeral Converter Guide 2026

Guide

⚠️ Disclaimer

Important

This tool provides estimates for informational purposes only. It is not a substitute for professional advice. Individual results vary based on your inputs and assumptions, so review important decisions with a qualified professional.

@
FreeUSUKCalculator.com freeusukcalculator.com
Roman Numeral Converter — Results Report
Inputs Used
Key Result
Converted Value
Full Breakdown
ItemValue
Charts
Breakdown Chart
Distribution
Current Result

Embed this Roman Numeral Converter

Roman Numeral Converter – Complete Guide

Guide

Roman numerals are one of humanity's most enduring numeral systems, in continuous use for over 2,500 years. From the copyright year on a movie to the chapter numbers in a book, the Super Bowl designation to a monarch's regnal number, Roman numerals remain woven into modern life in ways that require us to read and convert them regularly. This complete guide covers the symbols, rules, mnemonics, modern applications, and the mathematical logic behind one of history's most elegant numbering systems.

The Seven Roman Numeral Symbols

Symbol Value Origin
I1Single finger/tally mark
V5Open hand (five fingers)
X10Two V's crossed
L50Possibly from Chalcidic alphabet
C100Latin "centum" (hundred)
D500Half of M (CIↃ)
M1000Latin "mille" (thousand)

A popular mnemonic to remember the symbols in order is: "I Value Xylophones Like Cows Do Milk" — I(1), V(5), X(10), L(50), C(100), D(500), M(1000).

Subtractive Notation – The Six Special Cases

In standard Roman numeral notation, when a smaller value symbol appears before a larger value symbol, it is subtracted rather than added. This subtractive notation reduces awkward repetitions (IIII becomes IV, VIIII becomes IX). There are exactly six subtractive combinations in standard use:

Numeral Value Rule
IV4I before V (5−1)
IX9I before X (10−1)
XL40X before L (50−10)
XC90X before C (100−10)
CD400C before D (500−100)
CM900C before M (1000−100)

Important rules: only one small-value numeral may be placed before a larger one (IIX is not valid for 8 — you must use VIII). The subtracting numeral must be of the same category: I can only subtract from V and X; X can only subtract from L and C; C can only subtract from D and M.

Reading Complex Roman Numerals

To convert a complex Roman numeral, process it from left to right. If the current symbol is less than the next symbol, subtract it; otherwise add it. Example: MCMXCIX

  • M = 1000 (add)
  • C before M → CM = 900 (add)
  • X before C → XC = 90 (add)
  • I before X → IX = 9 (add)
  • Total: 1000 + 900 + 90 + 9 = 1999

This is the largest number expressible in standard Roman numerals: MMMCMXCIX = 3999. Standard notation cannot represent 4000 without using the vinculum (overbar) system.

Roman Numerals in Modern Life

Clock Faces

Traditional analogue clock faces use Roman numerals. Interestingly, most clocks display 4 as "IIII" rather than "IV" — this is a historical convention dating from at least medieval clockmaking, possibly to maintain visual balance (counterbalancing the VIII on the opposite side) or to avoid confusion with the abbreviated "IV" for Jupiter (IVPITER in Latin). The Palace of Westminster clock (Big Ben) and most luxury watch brands use IIII.

Movie Copyright Years

Copyright years on films and television productions have traditionally been rendered in Roman numerals. This made it harder for casual viewers to immediately identify how old a production was. For example, a 1995 film would display MCMXCV. The practice has declined with streaming platforms, though it remains common on major Hollywood productions. The BBC and ITV still routinely use Roman numerals in copyright notices.

Super Bowl Numbering

The NFL has used Roman numerals to designate Super Bowls since Super Bowl V (January 1971). Super Bowl LVIII was played in February 2024 (58th game). One notable exception: Super Bowl 50 (February 2016) used Arabic numerals — the NFL felt "Super Bowl L" looked awkward on merchandise and branding. Super Bowl LI (51) resumed the tradition.

British and Commonwealth Monarchs

Royal regnal numbers use Roman numerals: King Charles III (Carlos III), Queen Elizabeth II, King George VI. The Roman numeral indicates the ordinal position among monarchs sharing the same name. In Scotland, the Count is different — Elizabeth II was Elizabeth I in Scottish usage (there was no Elizabeth I of Scotland). This caused a political controversy when Elizabeth II came to the throne in 1952 and some Scottish pillar boxes bearing EIIR were vandalised.

Book Chapters and Pages

Roman numerals conventionally number the preliminary pages of books (preface, table of contents, foreword) while Arabic numerals begin with Chapter 1. This convention allows the front matter to be paginated and revised independently without renumbering the main text. Legal and academic documents also use Roman numerals for sections and sub-sections (Part I, Chapter II, Section III.iv).

Medical and Pharmaceutical Use

Roman numerals appear in pharmacy prescriptions — "ii" means "two" (tablets, spoonfuls), "iii" means "three." This is a remnant of apothecary notation. However, the Joint Commission (US) and NHS (UK) have both flagged Roman numerals in prescriptions as a source of medication errors and now recommend Arabic numerals in clinical settings. The symbols ss (semis, meaning "half"), qs (quantum sufficit, "as much as needed") and Roman numerals for dose quantities are being phased out.

Vinculum – Roman Numerals Beyond 3999

The vinculum (a horizontal bar placed over a numeral) multiplies its value by 1,000. This allows for much larger numbers: V̄ = 5,000; X̄ = 10,000; L̄ = 50,000; C̄ = 100,000; D̄ = 500,000; M̄ = 1,000,000. Roman engineers used these for large public works projects, census figures, and military counts. Some texts also use parentheses or vertical strokes to achieve the same effect.

Roman Numerals in Computer Science

Converting between Roman numerals and integers is a classic programming challenge, appearing in technical interviews at companies including Google, Amazon, and Microsoft. The standard algorithm processes the string from left to right, comparing adjacent values. In Python, a dictionary maps symbols to values; the algorithm adds the value unless the next symbol is larger, in which case it subtracts. This is a common LeetCode problem (Problem #12: Integer to Roman, #13: Roman to Integer), tested for string manipulation and conditional logic skills.

How do you convert Roman numerals to numbers?

Process each symbol from left to right. If a symbol is smaller than the one following it, subtract it (e.g., IV = 5−1 = 4). Otherwise add it. For XLII: X(10) before L(50) = −10, so 40 + 1 + 1 = 42. Our converter above handles any Roman numeral instantly.

What is the Roman numeral for 2024?

2024 in Roman numerals is MMXXIV. Breakdown: MM = 2000, XX = 20, IV = 4. Total: 2024.

What is the largest number you can write in Roman numerals?

In standard notation (using only the seven symbols I, V, X, L, C, D, M without a vinculum), the largest number is 3999 = MMMCMXCIX. With the vinculum (overbar multiplying by 1,000), you can represent up to 3,999,999.

Why do clocks use IIII instead of IV for 4?

Most traditional clockfaces use IIII rather than the standard subtractive IV. The exact reason is debated, but popular explanations include: maintaining visual balance (IIII mirrors VIII on the opposite side of the clock), avoiding confusion with the "IV" abbreviation for Jupiter in Latin inscriptions, and the preference of French King Louis XIV. The convention predates Roman numerology rules being standardised.

What are the six subtractive Roman numeral combinations?

The six are: IV (4), IX (9), XL (40), XC (90), CD (400), CM (900). In each case a smaller symbol precedes a larger one, meaning it is subtracted. These are the only valid subtractive combinations — IIX for 8, LC for 40, etc., are not standard.

What Super Bowl number is next?

Super Bowl LIX was played in February 2025 (the 59th game). Super Bowl LX will follow in February 2026. The NFL has used Roman numerals since Super Bowl V, with one exception: Super Bowl 50 (2016) used Arabic numerals because "Super Bowl L" was considered awkward for branding purposes.

Why are Roman numerals used in movie credits?

Roman numerals in film copyright years made it harder for casual viewers to immediately determine a film's age — relevant when a studio wanted a film to appear timeless rather than dated. The tradition began in the early studio era. While declining in streaming contexts, major productions and broadcast networks including the BBC continue to use them in copyright notices.

How do you write 1000 in Roman numerals?

1000 in Roman numerals is M, from the Latin word "mille" meaning thousand. 2000 is MM, 3000 is MMM. 4000 requires either MMMM (non-standard) or MV̄ with a vinculum (M before V̄ = 5000−1000 = 4000).