Country area reference
This reference lists the total area of countries in both square kilometres and square miles, so you can answer “how big is this country?” and compare sizes at a glance. It spans the full range from Russia, the largest state on Earth, down to the tiny European micro-states.
When this is useful
- Students and teachers cross-checking atlas figures or building comparison charts.
- Journalists and writers who need a quick scale reference (“France is about the same size as Texas”).
- Developers and analysts pulling area data for maps, data visualisations, or geographic datasets without writing a database query.
- General curiosity — it is surprisingly hard to hold country sizes in your head, and the sorted view reveals intuition-defying results (Algeria is larger than all EU member states combined).
How it works
Each country has a stored total area in km². The tool converts to square miles with a fixed factor:
area_mi2 = area_km2 × 0.386102
Total area includes inland water (large lakes and rivers), not just dry land, which is the convention most atlases use. Sorting by area ranks countries by size; sorting by name gives an alphabetical lookup. Because agencies differ on whether to count disputed regions or dependencies, figures are accurate to about a percent rather than exact to the last hectare.
Worked examples
| Country | km² | mi² | Mental scale |
|---|---|---|---|
| Russia | 17,098,242 | 6,601,668 | Spans 11 time zones |
| Canada | 9,984,670 | 3,855,100 | Second largest |
| United States | 9,833,517 | 3,796,742 | Slightly smaller than Canada |
| Vatican City | 0.44 | 0.17 | Smaller than many city parks |
For example, the conversion check on the United States: 9,833,517 × 0.386102 ≈ 3,796,742 mi² — which is exactly the figure shown in the table.
Practical notes and edge cases
- Total vs land area: The figures here are total area (land plus inland water). Land-only area is smaller for countries with large lakes — for instance Canada’s land area strips out Hudson Bay and the Great Lakes.
- Disputed territories: Different sources include or exclude disputed regions (e.g. Jammu & Kashmir split between India and Pakistan, or Western Sahara). Expect small discrepancies of a percent or two with other references.
- Micro-states: Vatican City at 0.44 km² and Monaco at 2.02 km² are best compared in hectares (100 ha = 1 km²). At that scale Vatican City is roughly 44 hectares — smaller than a standard 18-hole golf course.
- Unit choice: Use km² for scientific, UN, and international contexts. Use mi² when writing for a US audience. This tool shows both columns so you never need to guess which unit a reader expects.