Shoe Size Converter - Instant US, UK, EU & JP Conversion

Convert shoe sizes between US, UK, EU & JP instantly. Includes comprehensive charts for men, women & kids. Get accurate conversions for international shopping.

Shoe Size Converter

Convert shoe sizes between different measurement systems

Please enter a valid shoe size

Size Reference Chart

Men's Sizes

Men's Sizes
USUKEUJP (cm)MXAU
65.539247.55.5
6.5639.524.586
76.540258.56.5
7.574125.597
87.541.5269.57.5
8.584226.5108
98.542.52710.58.5
9.594327.5119
109.5442811.59.5
10.51044.528.51210
1110.5452912.510.5
11.51145.529.51311
1211.5463013.511.5
12.5124730.51412
1312.547.53114.512.5
13.5134831.51513
1413.548.53215.513.5
1514.549.53316.514.5
1615.550.53417.515.5

Women's Sizes

Women's Sizes
USUKEUJP (cm)MXAU
4235215.52
4.52.535.521.562.5
5336226.53
5.53.536.522.573.5
6437237.54
6.54.537.523.584.5
7538248.55
7.55.538.524.595.5
8639259.56
8.56.539.525.5106.5
97402610.57
9.57.540.526.5117.5
108412711.58
10.58.541.527.5128.5
119422812.59
11.59.542.528.5139.5
1210432913.510

Children's Sizes

Children's Sizes
USUKEUJP (cm)MXAU
3.53199.553
43.519.5105.53.5
4.542010.564
54.521116.54.5
5.5521.511.575
65.522127.55.5
6.562312.586
76.523.5138.56.5
7.572413.597
87.525149.57.5
8.5825.514.5108
98.5261510.58.5
9.592715.5119
109.527.51611.59.5
10.5102816.51210
1110.528.51712.510.5
11.5112917.51311
1211.5301813.511.5
12.51230.518.51412
1312.5311914.512.5
13.5133219.51513
📚

Documentation

Shoe Size Converter: Instant US, UK, EU & JP Size Conversion Tool

Convert Shoe Sizes Accurately Between International Sizing Systems

Shopping for shoes from international retailers? This free converter instantly translates between US, UK, EU, and Japanese shoe sizes for men, women, and children. Whether you're buying Nike sneakers from Europe, ordering boots from the UK, or shopping Japanese brands, you'll get accurate conversions and avoid the hassle of returns.

Here's the challenge with international shoe shopping: sizing systems weren't designed to work together. A US men's 9 might be labeled as UK 8.5, EU 42.5, or JP 27 depending on where it's manufactured. This tool uses standardized conversion tables based on foot length measurements to help you find the right fit when purchasing footwear across borders.

That said, no converter is perfect—brand variations mean your mileage may vary. What this gives you is a reliable starting point based on industry standards.

How to Use the Shoe Size Converter Tool

Step-by-Step Shoe Size Conversion Guide

  1. Select your current shoe size from your known sizing system (US, UK, EU, or JP)
  2. Choose your gender (men's, women's, or children's sizes)
  3. Pick the target sizing system you want to convert to
  4. View your converted size instantly with our accurate conversion tables
  5. Check the size chart below for additional reference and verification

How Does Shoe Size Conversion Work?

Shoe size conversion is based on foot length measurements, but each system evolved independently with its own quirks:

  • US Sizing: Based on the "barleycorn" unit (⅓ inch or 8.46mm). Men's size 1 equals 8⅔ inches (220mm), with each additional size adding one barleycorn. Yes, this medieval grain measurement still determines how we size shoes today.
  • UK Sizing: Similar to US but typically ½ to 1 size smaller. UK size 0 equals 8 inches (203mm) for adults. The British system dates back to a 14th-century decree by King Edward II.
  • EU Sizing: Based on the Paris Point (⅔ cm or 6.67mm). EU size 1 equals 1 Paris Point (6.67mm). This French system was an attempt at metric standardization in the 1800s.
  • JP Sizing: Directly represents foot length in centimeters, making it the most straightforward system. If you wear a JP 27, your foot is approximately 27cm long.

You might see formulas like these online:

  • US to UK (Men): UK=US0.5UK = US - 0.5
  • UK to EU (Adult): EU=UK+33EU = UK + 33
  • US to JP (Men): JP(US×0.846)+9.5JP \approx (US \times 0.846) + 9.5

Here's the truth: these are rough approximations at best. In practice, conversion tables based on standardized measurements are more reliable because there's no perfect mathematical relationship between systems. Different manufacturers also round differently, which is why you'll sometimes find slight variations between charts.

Why Shoe Size Conversion Accuracy Matters

Getting the right size matters, but conversion is inherently imprecise. Here's why:

  1. Manufacturer variations: Nike and Adidas might label the same physical shoe differently, even within the same country's sizing system.
  2. Regional differences: Italian-made EU 42 shoes often fit differently than German-made EU 42 shoes.
  3. Rounding issues: When converting between systems with different increments, manufacturers make judgment calls about rounding that aren't standardized.
  4. Width considerations: Most conversion systems only address length, not width. A narrow US 9 and a wide US 9 convert to the same EU size on paper, but they're very different shoes.

What works best in practice: Know your foot length in millimeters or centimeters, then cross-reference both the conversion chart and the brand's specific sizing guide. When buying expensive shoes online internationally, many experienced shoppers order two adjacent sizes and return one—annoying, but often worth it.

Real-World Applications for Size Conversion

International Online Shopping

International e-commerce has made size conversion more important than ever. When purchasing footwear from overseas retailers, understanding size equivalents helps you make informed decisions without the ability to try shoes on physically. The challenge: you can't just walk into a store and test the fit—you're committing based on numbers alone.

1// Function to convert sizes for an e-commerce platform
2function convertShoeSize(sourceSize, sourceSystem, targetSystem, gender) {
3  // Lookup tables for different genders and systems
4  const conversionTables = {
5    men: {
6      us: [6, 6.5, 7, 7.5, 8, 8.5, 9, 9.5, 10, 10.5, 11, 11.5, 12],
7      uk: [5.5, 6, 6.5, 7, 7.5, 8, 8.5, 9, 9.5, 10, 10.5, 11, 11.5],
8      eu: [39, 39.5, 40, 41, 41.5, 42, 42.5, 43, 44, 44.5, 45, 45.5, 46],
9      jp: [24, 24.5, 25, 25.5, 26, 26.5, 27, 27.5, 28, 28.5, 29, 29.5, 30]
10    },
11    women: {
12      us: [5, 5.5, 6, 6.5, 7, 7.5, 8, 8.5, 9, 9.5, 10, 10.5, 11],
13      uk: [3, 3.5, 4, 4.5, 5, 5.5, 6, 6.5, 7, 7.5, 8, 8.5, 9],
14      eu: [35, 36, 36.5, 37, 38, 38.5, 39, 40, 40.5, 41, 42, 42.5, 43],
15      jp: [21.5, 22, 22.5, 23, 23.5, 24, 24.5, 25, 25.5, 26, 26.5, 27, 27.5]
16    }
17  };
18  
19  // Find index in source system
20  const sourceIndex = conversionTables[gender][sourceSystem].findIndex(
21    size => Math.abs(size - sourceSize) < 0.1
22  );
23  
24  if (sourceIndex === -1) return null; // Size not found
25  
26  // Return corresponding size in target system
27  return conversionTables[gender][targetSystem][sourceIndex];
28}
29
30// Example: Convert US Men's 9 to EU
31const euSize = convertShoeSize(9, 'us', 'eu', 'men');
32console.log(`US Men's 9 equals EU ${euSize}`); // Output: US Men's 9 equals EU 42.5
33

Shoe Size Conversion for Travelers

Ever had to buy emergency shoes while traveling abroad? You're standing in a store in Paris, your shoes just broke, and the clerk asks what size you need. You know you're a US 9, but the boxes all show EU sizes. This is where knowing the conversion saves you from awkward trial-and-error in the store.

For Retailers and Manufacturers

Footwear manufacturers and retailers in global markets face a labeling challenge: they need to print multiple size designations on each shoe to serve international customers. The code examples below show how this multi-system labeling typically works in inventory management systems.

1public class ShoeSizeConverter {
2    // Conversion tables for men's shoes
3    private static final double[] US_MEN = {6, 6.5, 7, 7.5, 8, 8.5, 9, 9.5, 10, 10.5, 11, 11.5, 12};
4    private static final double[] UK_MEN = {5.5, 6, 6.5, 7, 7.5, 8, 8.5, 9, 9.5, 10, 10.5, 11, 11.5};
5    private static final double[] EU_MEN = {39, 39.5, 40, 41, 41.5, 42, 42.5, 43, 44, 44.5, 45, 45.5, 46};
6    private static final double[] JP_MEN = {24, 24.5, 25, 25.5, 26, 26.5, 27, 27.5, 28, 28.5, 29, 29.5, 30};
7    
8    /**
9     * Generates a multi-system size label for manufacturing
10     * @param baseSize The base size in the manufacturer's system
11     * @param baseSystem The manufacturer's sizing system
12     * @return A string with sizes in all major systems
13     */
14    public static String generateSizeLabel(double baseSize, String baseSystem) {
15        String gender = "men"; // For this example, assuming men's shoes
16        
17        double usSize = convertSize(baseSize, baseSystem, "us", gender);
18        double ukSize = convertSize(baseSize, baseSystem, "uk", gender);
19        double euSize = convertSize(baseSize, baseSystem, "eu", gender);
20        double jpSize = convertSize(baseSize, baseSystem, "jp", gender);
21        
22        return String.format("US: %.1f | UK: %.1f | EU: %.1f | JP: %.1f", 
23                            usSize, ukSize, euSize, jpSize);
24    }
25    
26    private static double convertSize(double size, String fromSystem, String toSystem, String gender) {
27        // Implementation would use lookup tables similar to previous examples
28        // Simplified for brevity
29        return 0.0; // Placeholder
30    }
31    
32    public static void main(String[] args) {
33        String label = generateSizeLabel(42, "eu");
34        System.out.println("Size Label: " + label);
35    }
36}
37

Alternative Methods for Finding Your International Shoe Size

Measuring Your Foot Length Directly

Rather than relying on conversion between abstract sizing systems, measuring foot length directly in centimeters or inches provides a more universal reference:

11. Place a piece of paper against a wall
22. Stand on the paper with your heel against the wall
33. Mark the position of your longest toe
44. Measure the distance from the wall to the mark in millimeters
55. Use this measurement to find your size in any system
6

This method bypasses the inconsistencies of sizing systems, though it doesn't account for width or arch height.

Understanding the Mondopoint Sizing System

The Mondopoint system (ISO 9407:2019) is an international standard that specifies both foot length and width in millimeters. While most people have never heard of it, you've probably encountered it if you've ever rented ski boots or bought military footwear.

Why it's not more widespread is a mystery—it's actually the most logical system. A Mondopoint 270/100 means your foot is 270mm long and 100mm wide. No conversion tables needed. But retail inertia is powerful, and customers are used to their existing size numbers.

1// C function to convert foot length to Mondopoint
2int footLengthToMondopoint(double lengthMm) {
3    // Mondopoint is foot length in mm, rounded to nearest 5mm
4    return 5 * (int)((lengthMm + 2.5) / 5.0);
5}
6
7// Example usage
8int mondopoint = footLengthToMondopoint(267.8);
9printf("Foot length 267.8mm = Mondopoint %d\n", mondopoint); // Output: Mondopoint 270
10

Advanced 3D Foot Scanning Technology

Modern technology offers alternatives to traditional sizing through 3D foot scanning. Some higher-end shoe stores now have scanning stations that create precise digital models of your feet in seconds. These scans capture length, width, arch height, and overall foot shape.

What you can do with a 3D scan:

  • Match to existing shoe lasts (the forms manufacturers use to make shoes)
  • Get recommendations for specific brands and models that fit your foot morphology
  • Create custom footwear if you're willing to pay for it

Smartphone apps have also started offering this, though accuracy varies. The technology is promising, but for now it's mostly found in specialized running stores and high-end footwear retailers. If you have persistent fit problems, it's worth seeking out a store that offers scanning—the detailed analysis often reveals why certain shoes never seem to fit right.

The Evolution of International Shoe Sizing Systems

US Shoe Size System History

The American sizing system dates back to the 1880s and is based on the English barleycorn measurement—literally, the length of a grain of barley. The original reference point was a child's size, with men's and women's scales developed as extensions. The system was standardized in the early 20th century, but it still carries its somewhat arbitrary historical baggage. This is why US sizing feels more intuitive to Americans—not because it makes sense, but because we're used to it.

UK Shoe Size System Origins

The British system is one of the oldest, dating back to the 14th century. King Edward II decreed in 1324 that three barleycorns would equal one inch, and shoe sizes would increase by one barleycorn. This medieval standard was later formalized and remains in use throughout the UK and former British colonies. The fact that we're still using a 700-year-old grain-based measurement system says something about how resistant the footwear industry is to change.

European (EU) Shoe Size Development

The European system evolved from the Paris Point, established in France in the 1800s. This system used a standard increment of ⅔ centimeter and was eventually adopted across continental Europe, though with regional variations. The modern EU system represents an attempt to standardize sizing across European countries, with varying degrees of success. Italian manufacturers, in particular, have a reputation for interpreting EU sizes... creatively.

Japanese (JP) Shoe Size System

The Japanese system is the most recent and also the most logical, directly representing foot length in centimeters. This system was established in the mid-20th century when Japan was modernizing its industrial standards. It's used throughout Japan and some other Asian countries. If the whole world adopted this system, we wouldn't need conversion tools—but that's not how history works.

Complete Shoe Size Conversion Charts

Men's Shoe Size Converter Chart (US, UK, EU, JP)

USUKEUJP (cm)
65.53924
6.5639.524.5
76.54025
7.574125.5
87.541.526
8.584226.5
98.542.527
9.594327.5
109.54428
10.51044.528.5
1110.54529
11.51145.529.5
1211.54630
1312.547.531
1413.548.532
1514.549.533

Women's Shoe Size Converter Chart (US, UK, EU, JP)

USUKEUJP (cm)
423521
4.52.535.521.5
533622
5.53.536.522.5
643723
6.54.537.523.5
753824
7.55.538.524.5
863925
8.56.539.525.5
974026
9.57.540.526.5
1084127
10.58.541.527.5
1194228

Kids' Shoe Size Converter Chart (US, UK, EU, JP)

USUKEUJP (cm)
43.519.510
54.52111
65.52212
76.523.513
87.52514
98.52615
109.527.516
1110.528.517
1211.53018
1312.53119
113.53220
2133.520.5
3234.521

Quick Shoe Size Conversion Reference Guide

Most Common Shoe Size Conversions at a Glance

Men's Popular Sizes:

  • US 9 = UK 8.5 = EU 42.5 = JP 27 cm
  • US 10 = UK 9.5 = EU 44 = JP 28 cm
  • US 11 = UK 10.5 = EU 45 = JP 29 cm

Women's Popular Sizes:

  • US 7 = UK 5 = EU 38 = JP 24 cm
  • US 8 = UK 6 = EU 39 = JP 25 cm
  • US 9 = UK 7 = EU 40 = JP 26 cm

Fast Conversion Rules of Thumb:

  • US to UK (Men): Subtract 0.5 (US 9 → UK 8.5)
  • US to EU (Men): Add 33 (US 9 → EU 42)
  • US to UK (Women): Subtract 2 (US 8 → UK 6)
  • US to EU (Women): Add 30-31 (US 8 → EU 39)
  • Any Size to JP: Use foot length in centimeters directly

Important Factors When Converting Shoe Sizes

Shoe Width Conversion Considerations

Most sizing systems focus primarily on length, but width is equally important for proper fit. In the US system, widths are denoted by letters (AA, B, D, EE), with each letter representing roughly a ⅛ inch difference in width. D is considered "standard" for men, while B is "standard" for women—though "standard" varies widely by brand.

Other systems have their own width designations, but these are far less standardized internationally. European manufacturers sometimes use numeric width systems, Japanese brands occasionally indicate width, but there's no consistent conversion between them. This is one area where international shoe shopping gets genuinely complicated, especially if you have notably narrow or wide feet.

1public enum ShoeWidth
2{
3    Narrow, // AA, A
4    Regular, // B, C, D
5    Wide, // E, EE
6    ExtraWide // EEE+
7}
8
9public class ShoeSizeWithWidth
10{
11    public double Size { get; set; }
12    public string System { get; set; }
13    public ShoeWidth Width { get; set; }
14    
15    public override string ToString()
16    {
17        string widthLabel = Width switch
18        {
19            ShoeWidth.Narrow => "Narrow",
20            ShoeWidth.Regular => "Regular",
21            ShoeWidth.Wide => "Wide",
22            ShoeWidth.ExtraWide => "Extra Wide",
23            _ => ""
24        };
25        
26        return $"Size: {Size} {System}, Width: {widthLabel}";
27    }
28}
29

Athletic Shoe Size Conversion Tips

Sports shoes don't follow the same rules as dress shoes. Running shoes typically run ½ to 1 size smaller than standard shoes because manufacturers account for foot swelling during activity. What this means: if you wear a US 9 in casual shoes, you might need a 9.5 in running shoes.

Different sports have different fit philosophies:

  • Running shoes: Sized up by ½ size for toe room during impact
  • Soccer cleats: Sized down for tight, controlled ball feel
  • Basketball shoes: May have different width profiles for lateral stability
  • Cycling shoes: Often run small since your foot isn't flexing much while pedaling

Converting Children's Shoe Sizes with Growth in Mind

Kids' feet grow fast—up to a full size every 3-4 months for toddlers. When converting sizes for children, many parents deliberately buy ½ to 1 size larger than the current measurement. The trade-off: immediate fit versus getting more months of wear before the next purchase.

Frequently Asked Questions About Shoe Size Conversion

How do I convert US shoe size to EU?

For men, US size 9 equals EU 42.5. For women, US size 7 equals EU 38. Use the conversion charts above as reference, but keep in mind the exact conversion depends on the manufacturer and gender. Men's and women's sizing follows different scales even when they're technically the same foot length.

What is my UK shoe size in US sizes?

UK sizes are typically 0.5 to 1 size smaller than US sizes. For men, the rule of thumb is to subtract 0.5 from the US size to get UK (so US 9 = UK 8.5). Women's conversions are less consistent—sometimes it's 1.5 sizes, sometimes 2 sizes difference. That's why using a conversion table is more reliable than trying to remember the formula.

Are Japanese shoe sizes in centimeters?

Yes, and this is why JP sizing is the easiest to work with. A JP size 26 means the shoe fits a foot that's 26 centimeters long. No medieval grain measurements, no arbitrary numbering—just straightforward metric measurements. If you know your foot length in centimeters, you already know your Japanese shoe size.

Do shoe sizes vary between brands?

Absolutely. Nike, Adidas, New Balance, and other brands can all label physically different shoes as the same size. This happens even within a single sizing system. The conversion charts give you a standardized starting point, but always check brand-specific size guides when available. Reading customer reviews about whether a shoe "runs large" or "runs small" is often more valuable than the official conversion.

How do I measure my foot for accurate size conversion?

The paper-and-wall method is surprisingly accurate:

  1. Place a piece of paper against a wall
  2. Stand on it with your heel against the wall (wear the socks you'll use with the shoes)
  3. Mark the position of your longest toe
  4. Measure from the wall to the mark in millimeters

This measurement gives you a universal reference. A 270mm foot equals roughly JP 27, which you can then convert to other systems. Measure in the afternoon—your feet swell during the day and that's when they're largest.

What's the difference between men's and women's shoe sizes?

In the US system, women's sizes are typically 1.5 to 2 sizes larger than men's for the same physical foot length. A men's US 7 roughly equals a women's US 8.5-9. This isn't about foot length—it's just how the numbering systems were established historically. Always use gender-specific conversion charts because the offset is built into the sizing scales.

Should I size up for running shoes?

Most runners size up by ½ to 1 full size to accommodate foot swelling during exercise and to prevent toenail bruising from repetitive impact. Find your base size first using the converter, then add that extra room. Your toes should have about a thumb's width of space in front.

How accurate are shoe size converters?

Converters provide approximate conversions based on standardized industry charts. They're generally accurate as a baseline, but you'll need to account for brand-specific variations. Think of the converted size as your starting point for research, not your final answer.

Can I convert half sizes using a shoe size converter?

Yes, half sizes work across all systems. In US sizing, a half size represents about 1/6 inch (4.2mm) difference. This translates to approximately 0.5 EU size, 0.5 UK size, or 0.5cm JP size. The conversion tables handle these increments accurately.

What if my converted size doesn't fit?

First, double-check your foot measurement in centimeters to rule out measurement error. If that's correct, you're likely dealing with brand-specific fit variations rather than conversion problems. Check the manufacturer's size guide—many brands publish their own measurements. Also scan customer reviews for phrases like "runs small" or "runs large." Some brands are notorious for this (looking at you, European luxury brands that size small).

Quick Tips for Accurate Shoe Size Conversion

Get better results with these practical tips learned from frequent international shoe buyers:

  1. Always measure both feet - Most people have one foot slightly larger. Use the larger measurement.
  2. Measure in the afternoon - Feet swell during the day. Morning measurements can leave you with shoes that feel tight by evening.
  3. Consider shoe type - Athletic shoes often require different sizing than dress shoes because of how they're designed to be worn.
  4. Check brand reviews - Customer reviews mentioning fit are gold. "Runs small" or "order up a half size" comments can save you a return.
  5. Use JP sizing as reference - Japanese sizes in centimeters provide the most accurate baseline since they're direct measurements rather than arbitrary numbers.
  6. Account for socks - Measure wearing the socks you'll use. Thick wool hiking socks versus thin dress socks make a real difference.
  7. When in doubt, size up - You can always add insoles to slightly large shoes. You can't stretch shoes that are genuinely too small (no matter what the internet says about freezing them).

Convert Shoe Sizes and Shop Internationally with Confidence

This free tool makes international footwear shopping straightforward by providing instant conversions between US, UK, EU, and JP sizing systems. Whether you're buying designer shoes from European retailers, ordering athletic footwear from the UK, exploring Japanese sneaker brands, or managing global inventory, the conversion charts above give you a reliable starting point for finding the right fit.

Remember: converted sizes are guidelines, not guarantees. Always cross-reference with brand-specific sizing information when available, and don't hesitate to reach out to retailers with sizing questions before ordering. The best approach combines the standardized conversions above with brand knowledge and, when possible, customer reviews about fit.

References

  1. International Organization for Standardization. (2019). ISO 9407:2019 Shoe sizes — Mondopoint system of sizing and marking. https://www.iso.org/standard/73758.html

  2. American Society for Testing and Materials. (2020). ASTM D5867-20 Standard Test Methods for Measurement of Foot Length, Width, and Foot Characteristics. https://www.astm.org/d5867-20.html

  3. British Standards Institution. (2011). BS 5943:2011 Specification for sizes of footwear and lasts. BSI Standards.

  4. Japanese Industrial Standards Committee. (2005). JIS S 5037:2005 Sizing system for footwear. Japanese Standards Association.

  5. Luximon, A. (Ed.). (2013). Handbook of Footwear Design and Manufacture. Woodhead Publishing. https://doi.org/10.1533/9780857098795

  6. Rossi, W. A., & Tennant, R. (2000). The Complete Footwear Dictionary (2nd ed.). Krieger Publishing Company.

  7. European Committee for Standardization. (2017). EN 13402-3:2017 Size designation of clothes - Part 3: Measurements and intervals. CEN Standards.


Meta Title: Shoe Size Converter - Instant US, UK, EU & JP Conversion Meta Description: Convert shoe sizes between US, UK, EU & JP instantly. Includes comprehensive charts for men, women & kids. Get accurate conversions for international shopping.

🔗

Related Tools

Discover more tools that might be useful for your workflow