Convert shoe sizes between US, UK, EU, JP and other international systems. Simple tool for accurate footwear sizing across global standards.
Convert shoe sizes between different international systems
Valid range: 6 to 16
Valid range: 35 to 50
Enter a shoe size above to see the conversion
US Men | US Women | UK | EU | CM | Australia | Japan |
---|---|---|---|---|---|---|
7 | 8.5 | 6.5 | 40 | 25.0 | 6.5 | 25.0 |
8 | 9.5 | 7.5 | 41 | 26.0 | 7.5 | 26.0 |
9 | 10.5 | 8.5 | 42.5 | 27.0 | 8.5 | 27.0 |
10 | 11.5 | 9.5 | 44 | 28.0 | 9.5 | 28.0 |
11 | 12.5 | 10.5 | 45 | 29.0 | 10.5 | 29.0 |
12 | 13.5 | 11.5 | 46 | 30.0 | 11.5 | 30.0 |
13 | 14.5 | 12.5 | 47.5 | 31.0 | 12.5 | 31.0 |
This chart shows approximate conversions between different shoe sizing systems.
The international shoe size converter is an essential tool for anyone shopping for footwear across different countries or regions. Shoe sizing varies significantly worldwide, with each region using its own measurement system and scale. This comprehensive guide explains how to convert between US, UK, European, Australian, and Japanese shoe sizes accurately. Whether you're purchasing shoes online from international retailers, traveling abroad, or buying gifts for friends in different countries, understanding shoe size conversion is crucial to ensure a proper fit and comfortable footwear experience.
Our international shoe size converter tool provides instant, accurate conversions between all major sizing systems, eliminating the confusion and potential errors of manual conversion methods. Simply input your known shoe size, select your current sizing system, choose the system you want to convert to, and get your equivalent size in seconds.
Before diving into conversions, it's important to understand the fundamental differences between major shoe sizing systems worldwide:
The United States uses a distinct sizing system that differs between men's, women's, and children's footwear:
The United Kingdom's sizing system:
The European sizing system:
The Australian sizing system:
Japanese and some Asian sizing systems:
Converting between different shoe sizing systems isn't simply a matter of adding or subtracting a fixed number, as the scales use different increments and starting points. However, we can establish conversion formulas based on foot measurement correlations.
For the most common conversions:
US Men's to EU size:
US Women's to US Men's:
UK to US Men's:
CM to US Men's (approximate):
These formulas provide approximate conversions. For more accurate results, conversion tables are typically used, as they account for the non-linear nature of some size relationships.
Several factors affect conversion accuracy:
Our converter tool uses comprehensive lookup tables rather than simple formulas to provide the most accurate conversions possible across all size ranges.
Follow these simple steps to convert your shoe size between different international systems:
The tool automatically validates your input to ensure it's within the realistic range for the selected system. If you enter an invalid size, you'll receive an error message with guidance on the acceptable range.
Below is a detailed conversion chart showing the relationships between different sizing systems. This chart serves as a quick reference for common conversions:
US Men | US Women | UK | EU | CM (Japan) | Australia |
---|---|---|---|---|---|
6 | 7.5 | 5.5 | 39 | 24 | 5.5 |
6.5 | 8 | 6 | 39.5 | 24.5 | 6 |
7 | 8.5 | 6.5 | 40 | 25 | 6.5 |
7.5 | 9 | 7 | 40.5 | 25.5 | 7 |
8 | 9.5 | 7.5 | 41 | 26 | 7.5 |
8.5 | 10 | 8 | 42 | 26.5 | 8 |
9 | 10.5 | 8.5 | 42.5 | 27 | 8.5 |
9.5 | 11 | 9 | 43 | 27.5 | 9 |
10 | 11.5 | 9.5 | 44 | 28 | 9.5 |
10.5 | 12 | 10 | 44.5 | 28.5 | 10 |
11 | 12.5 | 10.5 | 45 | 29 | 10.5 |
11.5 | 13 | 11 | 45.5 | 29.5 | 11 |
12 | 13.5 | 11.5 | 46 | 30 | 11.5 |
13 | 14.5 | 12.5 | 47.5 | 31 | 12.5 |
14 | 15.5 | 13.5 | 48.5 | 32 | 13.5 |
15 | 16.5 | 14.5 | 49.5 | 33 | 14.5 |
Note: This chart provides general conversions. For the most accurate results, use our interactive converter tool which accounts for additional factors.
Let's walk through some common conversion scenarios to illustrate how the tool works:
James wears a US Men's size 10 shoe and wants to order shoes from an Italian manufacturer that uses EU sizing:
Maria has a pair of German shoes in EU size 39 and wants to know her UK size:
Sarah wears US Women's size 8.5 and wants to purchase unisex shoes listed in men's sizes:
Here are implementation examples in various programming languages for developers interested in creating their own shoe size conversion functionality:
1// JavaScript function to convert US Men's size to EU size
2function convertUSMenToEU(usMenSize) {
3 // Validation
4 if (usMenSize < 6 || usMenSize > 16) {
5 return "Size out of range";
6 }
7
8 // Conversion table (partial)
9 const conversionTable = {
10 6: 39,
11 6.5: 39.5,
12 7: 40,
13 7.5: 40.5,
14 8: 41,
15 8.5: 42,
16 9: 42.5,
17 9.5: 43,
18 10: 44,
19 10.5: 44.5,
20 11: 45,
21 11.5: 45.5,
22 12: 46,
23 13: 47.5,
24 14: 48.5,
25 15: 49.5,
26 16: 50.5
27 };
28
29 return conversionTable[usMenSize] || "Size not found";
30}
31
32// Example usage:
33console.log(`US Men's 10 = EU ${convertUSMenToEU(10)}`); // Output: US Men's 10 = EU 44
34
1def convert_uk_to_us_men(uk_size):
2 """Convert UK shoe size to US Men's size"""
3 if uk_size < 3 or uk_size > 15:
4 return "Size out of range"
5
6 # UK sizes are typically 0.5 smaller than US Men's
7 us_men_size = uk_size + 0.5
8
9 return us_men_size
10
11# Example usage:
12uk_size = 9
13us_size = convert_uk_to_us_men(uk_size)
14print(f"UK {uk_size} = US Men's {us_size}") # Output: UK 9 = US Men's 9.5
15
1public class ShoeSizeConverter {
2 public static double euToUsMen(double euSize) {
3 // Validation
4 if (euSize < 35 || euSize > 50) {
5 throw new IllegalArgumentException("EU size out of valid range");
6 }
7
8 // Simplified formula (approximate)
9 return (euSize - 33);
10 }
11
12 public static void main(String[] args) {
13 double euSize = 44;
14 double usSize = euToUsMen(euSize);
15 System.out.printf("EU %.1f = US Men's %.1f%n", euSize, usSize);
16 // Output: EU 44.0 = US Men's 11.0
17 }
18}
19
1<?php
2function convertCmToUsMen($cmSize) {
3 // Validation
4 if ($cmSize < 22 || $cmSize > 35) {
5 return "Size out of range";
6 }
7
8 // Conversion table (partial)
9 $conversionTable = [
10 24 => 6,
11 24.5 => 6.5,
12 25 => 7,
13 25.5 => 7.5,
14 26 => 8,
15 26.5 => 8.5,
16 27 => 9,
17 27.5 => 9.5,
18 28 => 10,
19 28.5 => 10.5,
20 29 => 11,
21 29.5 => 11.5,
22 30 => 12,
23 31 => 13,
24 32 => 14,
25 33 => 15
26 ];
27
28 return isset($conversionTable[$cmSize]) ? $conversionTable[$cmSize] : "Size not found";
29}
30
31// Example usage:
32$cmSize = 28;
33echo "CM $cmSize = US Men's " . convertCmToUsMen($cmSize);
34// Output: CM 28 = US Men's 10
35?>
36
1' Excel VBA Function for US Women's to US Men's conversion
2Function USWomenToUSMen(womenSize As Double) As Double
3 ' Women's sizes are typically 1.5 larger than men's
4 USWomenToUSMen = womenSize - 1.5
5End Function
6
7' Usage in Excel cell:
8' =USWomenToUSMen(8.5)
9' Result: 7
10
The international shoe size converter serves numerous practical purposes:
With the rise of global e-commerce, consumers frequently purchase footwear from international retailers. A shoe size converter ensures you order the correct size when shopping on websites that use different sizing systems than you're accustomed to.
When traveling abroad, you might need to purchase shoes in a foreign country. Understanding local sizing systems helps you communicate your size needs effectively to sales associates who may not be familiar with your home country's sizing.
When buying shoes as gifts for friends or family in different countries, a size converter helps ensure you select the correct size in the recipient's local system.
Manufacturers and retailers who distribute footwear internationally need accurate size conversion to properly label products for different markets and provide sizing guidance to customers.
Sports shoes and specialty footwear often use sizing systems specific to their category or brand. Runners, hikers, and athletes may need to convert between these specialized systems and standard sizing.
While our online converter provides quick and accurate results, there are alternative methods for shoe size conversion:
These alternatives can be useful in specific situations, but our online converter offers the advantage of instant, accurate conversions without special equipment or assistance.
The development of standardized shoe sizing has a fascinating history spanning centuries:
Before standardized sizing, shoemakers used rudimentary measurement systems or created custom-fitted shoes for each customer. The earliest known standardized shoe sizing system dates back to 1324 in England, when King Edward II declared that the barleycorn (one-third of an inch) would be the basis for shoe sizing.
The UK system, based on the barleycorn measure, became the foundation for many other sizing systems:
Despite numerous attempts at creating a universal sizing system, regional preferences have persisted:
Modern technology has brought new approaches to shoe sizing:
Despite these technological advances, the traditional sizing systems remain dominant in retail, making conversion tools essential for global shoppers.
UK sizes are typically 0.5 sizes smaller than US men's sizes. For example, a US men's size 10 is approximately a UK size 9.5. The scales also start from different points, with UK sizes generally beginning at smaller measurements than US sizes.
Men's and women's shoe sizes differ primarily due to historical and anatomical reasons. In the US system, women's shoes are typically labeled 1.5 sizes larger than men's shoes of the same length. This difference accounts for the generally narrower and smaller average foot size of women compared to men.
Shoe size conversions provide good approximations but aren't always exact due to several factors: manufacturing variations between brands, different foot shapes across populations, and slight inconsistencies in how different regions implement sizing standards. For the most accurate fit, it's best to know your measurements in centimeters and refer to brand-specific size charts when available.
Yes, there can be significant variation between brands even within the same sizing system. Some brands run larger or smaller than standard sizes, and others may have different width profiles. This phenomenon, known as "vanity sizing," can make finding the right fit challenging even within your home country's sizing system.
To measure your foot at home:
Most international sizing systems focus primarily on length, with width indicated separately (often as narrow, medium, wide, etc.). In the US, letter codes (like AA, B, D, EE) denote width. European systems rarely specify width explicitly. When converting sizes internationally, be aware that width standards may differ significantly between regions.
No, children's shoe sizing follows different conventions across regions. US children's sizes start at 0 for newborns and increase, while UK children's sizing begins at 0 but follows a different scale. European children's sizing typically starts around 16-17 for infants. Our converter includes children's size conversions for accurate results across all age groups.
To convert a foot measurement in centimeters to a shoe size:
Half sizes are common in US and UK systems to provide more fitting options, typically representing a 1/6 inch (4.23mm) difference. European sizing traditionally used whole numbers, though some manufacturers now offer half sizes. Japanese sizing, based on centimeters, often comes in 0.5cm increments.
Different types of footwear may fit differently even at the same nominal size. Athletic shoes often run smaller than dress shoes, and boots may require different sizing than sandals. Our converter provides general conversions, but specialty footwear (like ski boots or climbing shoes) may use sport-specific sizing systems.
International Organization for Standardization. (2019). ISO 9407:2019 Shoe sizes โ Mondopoint system of sizing and marking. https://www.iso.org/standard/73758.html
American Society for Testing and Materials. (2020). ASTM D5219-20 Standard Terminology for Footwear. https://www.astm.org/d5219-20.html
British Standards Institution. (2011). BS 4981:2011 Specification for size designation of footwear. https://shop.bsigroup.com/ProductDetail/?pid=000000000030209662
European Committee for Standardization. (2007). EN 13402-3:2017 Size designation of clothes - Part 3: Measurements and intervals. https://standards.cen.eu/
Goldmann, R., & Papson, S. (2013). Nike Culture: The Sign of the Swoosh. SAGE Publications.
Cheskin, M. P. (1987). The Complete Handbook of Athletic Footwear. Fairchild Books.
Rossi, W. A. (2000). The Complete Footwear Dictionary (2nd ed.). Krieger Publishing Company.
Japanese Industrial Standards Committee. (2005). JIS S 5037:2005 Sizing system for footwear. https://www.jisc.go.jp/
Meta Description Suggestion: Convert shoe sizes instantly between US, UK, EU, and Asian systems with our International Shoe Size Converter. Get accurate size conversions for men's, women's, and children's footwear.
Discover more tools that might be useful for your workflow