Shoe Size Converter: US, UK, EU & JP Sizing Systems

Convert shoe sizes between US, UK, EU, and JP systems for men, women, and children with our easy-to-use calculator and comprehensive reference charts.

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

Shoe size converter tools help you instantly convert between US, UK, EU, and Japanese shoe sizes for men, women, and children. Whether you're shopping online from international retailers or traveling abroad, our shoe size converter ensures you always get the perfect fit by accurately translating sizes across different measurement systems.

This comprehensive shoe size conversion tool eliminates the guesswork when purchasing footwear across borders. With precise conversion tables and formulas for all major sizing systems, you'll never order the wrong size again.

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

Understanding Shoe Size Conversion Methods

Shoe size conversion is based on foot length measurements, but the relationship between these measurements and size designations varies by system:

  • 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.
  • UK Sizing: Similar to US but typically ½ to 1 size smaller. UK size 0 equals 8 inches (203mm) for adults.
  • EU Sizing: Based on the Paris Point (⅔ cm or 6.67mm). EU size 1 equals 1 Paris Point (6.67mm).
  • JP Sizing: Directly represents foot length in centimeters, making it the most straightforward system.

The mathematical relationships between these systems can be expressed as:

  • 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

However, these formulas are approximations. In practice, conversion tables based on standardized measurements are more reliable, especially since there's no perfect international standardization.

Why Shoe Size Conversion Accuracy Matters

Accurate shoe size conversion is crucial but inherently imprecise due to:

  1. Manufacturer variations: Brands may have slightly different sizing standards
  2. Regional differences: Even within systems, there can be country-specific variations
  3. Rounding issues: When converting between systems with different increments
  4. Width considerations: Most conversion systems only address length, not width

For the most accurate fit, it's advisable to know your foot length in millimeters or inches and consult brand-specific sizing charts when available.

Real-World Applications of Shoe Size Converters

Converting Shoe Sizes for International Online Shopping

International e-commerce has made shoe size conversion more important than ever. When purchasing footwear from overseas retailers, understanding size equivalents helps consumers make informed decisions without the ability to try on shoes physically.

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

Travelers often need to purchase shoes in foreign countries where different sizing systems are used. Understanding local sizing with a shoe size converter prevents the frustration of buying ill-fitting footwear.

Shoe Size Converter for Retailers and Manufacturers

Footwear manufacturers and retailers operating in global markets must label their products with multiple size designations to serve international customers effectively.

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 to Shoe Size Conversion

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 not commonly used in everyday retail, it's the standard for ski boots and military footwear in many countries.

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, which creates precise digital models of feet. These scans can be used for:

  • Matching to existing shoe lasts (the forms used to make shoes)
  • Creating custom footwear
  • Recommending specific brands and models that best match foot morphology

This technology is increasingly available in specialty footwear stores and through smartphone apps.

The Evolution of International Shoe Sizing Systems

US Shoe Size System History

The American shoe sizing system dates back to the 1880s and is based on the English barleycorn measurement. 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 still maintains its somewhat arbitrary historical basis.

UK Shoe Size System Origins

The British shoe sizing system is one of the oldest, dating back to the 14th century. It was originally based on the barleycorn (⅓ inch), with King Edward II decreeing in 1324 that three barleycorns would equal one inch, and shoe sizes would increase by one barleycorn. This system was later formalized and remains in use throughout the UK and former British colonies.

European (EU) Shoe Size Development

The European shoe sizing 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.

Japanese (JP) Shoe Size System

The Japanese shoe sizing system is the most recent of the major systems and also the most straightforward, directly representing foot length in centimeters. This system was established in the mid-20th century and is used throughout Japan and some other Asian countries.

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

Important Factors in Shoe Size Conversion

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 (e.g., AA, B, D, EE), with each letter representing a ⅛ inch difference in width. Other systems have their own width designations, but these are less standardized internationally.

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 often have their own sizing peculiarities when using a shoe size converter. Running shoes typically run ½ to 1 size smaller than standard shoes to account for foot swelling during activity. Different sports may have different fit requirements:

  • Running shoes: Often sized up by ½ size
  • Soccer cleats: Often sized down for tight fit
  • Basketball shoes: May have different width profiles
  • Cycling shoes: Often sized differently from walking shoes

Converting Children's Shoe Sizes with Growth in Mind

When converting children's sizes with a shoe size converter, it's important to account for growth. Many parents buy shoes ½ to 1 size larger than the current measurement to accommodate rapid foot growth.

Frequently Asked Questions About Shoe Size Conversion

How do I convert US shoe size to EU?

To convert US to EU shoe sizes, use our shoe size converter or reference the conversion charts above. Generally, men's US size 9 equals EU 42.5, and women's US size 7 equals EU 38. The exact conversion depends on the manufacturer and gender.

What is my UK shoe size in US sizes?

UK shoe sizes are typically 0.5 to 1 size smaller than US sizes. For men, subtract 0.5 from the US size to get UK size. Women's conversions vary more, so always use a shoe size converter for accuracy.

Are Japanese shoe sizes in centimeters?

Yes, Japanese (JP) shoe sizes directly represent foot length in centimeters, making them the most straightforward system. A JP size 26 means the shoe fits a foot that is 26 centimeters long.

Do shoe sizes vary between brands?

Yes, shoe sizes can vary significantly between brands even within the same sizing system. Always check brand-specific size charts and use our shoe size converter as a starting point, not an absolute guarantee.

How do I measure my foot for accurate size conversion?

Place your foot on paper against a wall, mark your longest toe, and measure from the wall to the mark in millimeters. Use this measurement with our shoe size converter for the most accurate results.

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. A men's US 7 roughly equals a women's US 8.5-9. Always use gender-specific conversion charts.

Should I size up for running shoes?

Yes, most runners should size up by ½ to 1 full size to accommodate foot swelling during exercise. Use our shoe size converter to find your base size, then adjust accordingly.

How accurate are shoe size converters?

Shoe size converters provide approximate conversions based on standardized charts. While generally accurate, always account for brand variations and consider ordering multiple sizes when shopping online internationally.

Start Converting Your Shoe Sizes Today

Our comprehensive shoe size converter makes international footwear shopping simple and accurate. Whether you're buying shoes from overseas retailers, traveling abroad, or managing inventory for a global market, proper size conversion ensures the perfect fit every time. Use our conversion charts, understand the sizing systems, and never worry about ordering the wrong size again.

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. Rossi, W. A. (2000). The Complete Footwear Dictionary (2nd ed.). Krieger Publishing Company.

  4. Luximon, A. (Ed.). (2013). Handbook of Footwear Design and Manufacture. Woodhead Publishing.

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

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


Meta Title: Shoe Size Converter - US, UK, EU & JP Conversion Tool Meta Description: Convert shoe sizes instantly between US, UK, EU & Japanese systems. Accurate shoe size converter with charts for men, women & kids. Never order wrong size again!