Shoe Size Guide - Canadian, American & European Size Conversions (2024)

Shoe Size Guide - Canadian, American & European Size Conversions | SoftMoc USA

shopping bag items

{{ getSearchSuggestionsText['SS00001'] }}

{{ getSearchSuggestionsText['SS00002'] }}
{{ getSearchSuggestionsText['SS00003'] }}
{{ getSearchSuggestionsText['SS00004'] }}
Choose A SoftMoc Store Near You
Shoe Size Guide - Canadian, American & European Size Conversions (39)

This coupon is exclusive to active SoftMoc Rewards members only. Would you like to become active by joining our newsletter to receive SoftMoc offers & promotions?

Exchanges & Returns Conditions:
  • •Any order may be returned within 75 days from the date of purchase, via mail or to a SoftMoc Retail location for a full refund and within 90 days for exchange or store credit.
  • •The item must be unworn, in the original shoe box (enclosed in a protective shipping box) and include a copy of your invoice.
  • •Please write the Return ID Number on the outside of the shipping box (not the actual shoe box).
  • •If returning to a SoftMoc retail location, the item must be unworn, in the original shoebox and you must have with you the original invoice included in the shipment and the original credit card used for the purchase.
    Note: A Return ID Number is not required for an in-store purchase or when returning your online order to a SoftMoc retail location.
  • •If these return specifications are not met, we may not be able to properly process your return. As well, we are not responsible for the loss or damage of return shipments, so we suggest that you package your return shipment protectively and send by registered mail or courier.
Pick Up Today

We noticed that you have some items in your shopping bag which are not available for "Pick Up Today" at . Please note there will be a $3.99 shipping fee for some items. Do you want to ship them instead or remove from bag?

Pick Up Today
Pick Up Today
Pick Up Today
' html2 = html2 + '

' + '' + name + '' + '' + dist + ' mi(s).' + '

' j++; if (j >= 4) break; } dom.stores.innerHTML = html1 dom.storesM.innerHTML = html2 } function closeInfoWindow(el) { el.infoWindow && el.infoWindow.close(map, el) } function findMarker(store) { return function (element) { if (!element.details) return false return element.details.id === store.details.id; } } function viewNearStore(index) { if (!initialized) return var store = sortedByDistance[index]; map.markers && map.markers.forEach(closeInfoWindow) map.panTo({ lat: +store.lat, lng: +store.lng }) var marker = map.markers.find(findMarker(store)); marker.infoWindow.open(map, marker); } function initMyStore(id, force) { if (id == 0) { var defaultText = 'Choose Your Store' currentStore = null currentStoreName = null dom.currentStore.forEach(function (el) { el.innerText = defaultText }) dom.clearButtons.forEach(function (el) { el.classList.add('hidden') }) if (force === true) { } else { setMyStore("0") } } else { var found = false for (var i = 0; i < numLocations; i++) { if (locations[i].details.id == id) { found = true currentStore = locations[i] currentStoreName = currentStore.details.name.replace(/softmoc /i, '') if (force === true) { } else { setMyStore(id) } break } } if (!found) return console.log('No store with the ID "' + id + '" was found') dom.input.value = '' dom.currentStore.forEach(function (el) { el.innerText = currentStoreName }) dom.clearButtons.forEach(function (el) { el.classList.remove('hidden') }) } } function selectMyStore(id) { if (myStoreId == id) return var found = false for (var i = 0; i < numLocations; i++) { if (locations[i].details.id == id) { found = true currentStore = locations[i] currentStoreName = currentStore.details.name.replace(/softmoc /i, '') setMyStore(id) break } } if (!found) return console.log('No store with the ID "' + id + '" was found') dom.input.value = '' dom.currentStore.forEach(function (el) { el.innerText = currentStoreName }) dom.clearButtons.forEach(function (el) { el.classList.remove('hidden') }) dispatch() pickerCb && runPickerCallback(null, currentStore, currentStoreName) } function clearMyStore() { var defaultText = 'Choose Your Store' currentStore = null currentStoreName = null dom.currentStore.forEach(function (el) { el.innerText = defaultText }) dom.clearButtons.forEach(function (el) { el.classList.add('hidden') }) myPrevStoreId = "0"; setMyStore("0") dispatch() } function addMarkerContentToLocations() { locations.forEach(function (loc, i) { var phoneLink = 'tel:' + loc.details.phone.replace(/[)( -]/g, '') loc.icon = '/img/s-logo.png'; loc.infoWindow.content = '' + '' + loc.details.name + '' + '
' + loc.details.address + '
' + loc.details.city + ', ' + loc.details.state + '
' + loc.details.zip + ', ' + loc.details.country + '
' + '' + loc.details.phone + '' + '
' + '' }) } function getNestedProp(obj, props) { if (obj === undefined) return obj var nest = props.split('.').reverse() for (var i = nest.length; i--;) { obj = obj[nest[i]] if (obj === undefined) break } return obj } function values(obj, keys) { return keys.map(function (k) { return obj.hasOwnProperty(k) ? obj[k] : undefined }) } function getAllLocations() { // Locations Array var locations = []; var availableStores = availableStoresJson.map(availableStore) || []; if (availableStores.length > 0) { for (var i = 0; i < availableStores.length; i++) { var store = availableStores[i]; var details = { storeUrl: store.urlName, id: store.storeID, name: store.storeName, address: store.address, city: store.city, state: store.state, zip: store.zip, country: store.country, phone: store.phone, email: store.email, storeImage: store.storeImage1, storeHours: store.storeHours }; locations[i] = { details: details, lat: store.addressLat, lng: store.addressLng, checkForToday: store.checkForToday, check_DOW: store.check_DOW, isAvailable: store.isAvailable, infoWindow: {} } } } return locations } function addListener(fn) { dom.modal.addEventListener('mystore.selected', fn) return fn } function removeListener(fn) { dom.modal.removeEventListener('mystore.selected', fn) } function dispatch() { var ev = new CustomEvent('mystore.selected', { detail: currentStore ? { details: currentStore.details, name: currentStoreName, coords: { lat: currentStore.lat, lng: currentStore.lng } } : null }) dom.modal.dispatchEvent(ev) } function runPickerCallback(e, store, storeName) { dom.modal.removeEventListener('modalIsClose', runPickerCallback) dom.msg.classList.add('hidden') pickerCb(store || null, storeName) pickerCb = null } } function getUserLocation(cb) { var xhr = new XMLHttpRequest() xhr.onreadystatechange = function () { if (xhr.readyState == 4 && xhr.status == 200) { var arr = xhr.responseText.split(',') var coords = { latitude: Number(arr[0]), longitude: Number(arr[1]) } return cb({ coords: coords }) } } xhr.open('GET', 'https://ipapi.co/latlong/?key=WGTnzPNfj0zexMISaf7H32BRXnJNt5mhAIYkUUGdG2McjEiAMo') xhr.send() } // _1_diagonal-movement document.addEventListener('DOMContentLoaded', function () { new menuAim({ menu: document.getElementsByClassName("mega-nav__items")[0], submenuDirection: "below", activate: function (e) { $(e).find('.mega-nav__sub-nav-wrapper').addClass('hover'); }, deactivate: function (e) { $(e).find('.mega-nav__sub-nav-wrapper').removeClass('hover'); if (!$('#mega-nav-search').hasClass('block')) { $('.header-v2__overlay').removeClass('header-v2__overlay--active'); } }, exitMenu: function (e) { $(e).find('.mega-nav__sub-nav-wrapper').removeClass('hover'); return true; } }); });

')); if (html != '') html = html.replace('', ''); if (html != '') html = html.replace("", ""); $('#request-from-sizeChart').html(html); var el if (typeof target == 'string') el = document.getElementById(target) else if (target instanceof HTMLElement) { var triggers = target.getAttribute('aria-controls') el = triggers ? document.getElementById(triggers) : target } else { console.error('Target is not an ID or a reference to a DOM element') return } if (!el || !el.classList.contains('modal')) { console.error('Modal with the passed target not found') return } else if (el.classList.contains('modal--is-visible')) return var fo = focusOn && document.getElementById(focusOn) var ev = new CustomEvent('openModal', fo ? { detail: fo } : {}); el.dispatchEvent(ev); } }); } else { var el if (typeof target == 'string') el = document.getElementById(target) else if (target instanceof HTMLElement) { var triggers = target.getAttribute('aria-controls') el = triggers ? document.getElementById(triggers) : target } else { console.error('Target is not an ID or a reference to a DOM element') return } if (!el || !el.classList.contains('modal')) { console.error('Modal with the passed target not found') return } else if (el.classList.contains('modal--is-visible')) return var fo = focusOn && document.getElementById(focusOn) var ev = new CustomEvent('openModal', fo ? { detail: fo } : {}); el.dispatchEvent(ev); } } // Find the first close button within the visible modal and click it function closeModal() { var trigger = document.querySelector('.modal--is-visible .js-modal__close') trigger.click() } function __toggleDrawer(force, id) { var drawer = document.getElementById(id) if (!drawer || !drawer.classList.contains('drawer')) return var forceUsed = force != undefined // Before opening the drawer the wrong way, look for an element with [aria-controls={id}] to use // Otherwise, the drawer will open but you won't be able to close it the normal ways if (!drawer.classList.contains('drawer--is-visible') && (!forceUsed || force)) { var trigger = document.querySelector("[aria-controls='" + id + "']") if (trigger) { return trigger.click() } } forceUsed ? drawer.classList.toggle('drawer--is-visible', force) : drawer.classList.toggle('drawer--is-visible') }

Here's a helpful guide to convert your familiar size type to a different one for ordering purposes. Please remember this is only a guide; your personal results could be different.

Thank You! If you need more help just email us at shoes@softmoc.com.

WOMEN'S SIZE CONVERSION

CANADA / USA EURO UK INCHES CM
4 35 2 8.1875" 20.8
4.5 35 2.5 8.375" 21.3
5 35-36 3 8.5" 21.6
5.5 36 3.5 8.75" 22.2
6 36-37 4 8.875" 22.5
6.5 37 4.5 9.0625" 23
7 37-38 5 9.25" 23.5
7.5 38 5.5 9.375" 23.8
8 38-39 6 9.5" 24.1
8.5 39 6.5 9.6875" 24.6
9 39-40 7 9.875" 25.1
9.5 40 7.5 10" 25.4
10 40-41 8 10.1875" 25.9
10.5 41 8.5 10.3125" 26.2
11 41-42 9 10.5" 26.7
11.5 42 9.5 10.6875" 27.1
12 42-43 10 10.875" 27.6

MEN'S SIZE CONVERSION

CANADA / USA EURO UK INCHES CM
6 39 5.5 9.25" 23.5
6.5 39 6 9.5" 24.1
7 40 6.5 9.625" 24.4
7.5 40-41 7 9.75" 24.8
8 41 7.5 9.9375" 25.4
8.5 41-42 8 10.125" 25.7
9 42 8.5 10.25" 26
9.5 42-43 9 10.4375" 26.7
10 43 9.5 10.5625" 27
10.5 43-44 10 10.75" 27.3
11 44 10.5 10.9375" 27.9
11.5 44-45 11 11.125" 28.3
12 45 11.5 11.25" 28.6
13 46 12.5 11.5625" 29.4
14 47 13.5 11.875" 30.2
15 48 14.5 12.1875" 31
16 49 15.5 12.5" 31.8

BIG KID SIZE CONVERSION
(7 - 12 years)

CANADA / USA EURO UK INCHES CM
3.5 35 2.5 8.625" 21.9
4 36 3 8.75" 22.2
4.5 36 3.5 9" 22.9
5 37 4 9.125" 23.2
5.5 37 4.5 9.25" 23.5
6 38 5 9.5" 24.1
6.5 38 5.5 9.625" 24.4
7 39 6 9.75" 24.8

LITTLE KID SIZE CONVERSION
(4 - 7 years)

CANADA / USA EURO UK INCHES CM
10.5 27 9.5 6.625" 16.8
11 28 10 6.75" 17.1
11.5 29 10.5 7" 17.8
12 30 11 7.125" 18.1
12.5 30 11.5 7.25" 18.4
13 31 12 7.5" 19.1
13.5 31 12.5 7.625" 19.4
1 32 13 7.75" 19.7
1.5 33 14 8" 20.3
2 33 1 8.125" 20.6
2.5 34 1.5 8.25" 21
3 34 2 8.5" 21.6

TODDLER SIZE CONVERSION
(9 months - 4 years)

CANADA / USA EURO UK INCHES CM
3.5 19 2.5 4.25" 10.8
4 19 3 4.5" 11.4
4.5 20 3.5 4.625" 11.7
5 20 4 4.75" 12.1
5.5 21 4.5 5" 12.7
6 22 5 5.125" 13
6.5 22 5.5 5.25" 13.3
7 23 6 5.5" 14
7.5 23 6.5 5.625" 14.3
8 24 7 5.75" 14.6
8.5 25 7.5 6" 15.2
9 25 8 6.125" 15.6
9.5 26 8.5 6.25" 15.9
10 27 9 6.5" 16.5

INFANT SIZE CONVERSION
(0 - 9 months)

CANADA / USA EURO UK INCHES CM
0 15 0 3.125" 7.9
1 16 0.5 3.5" 8.9
1.5 17 1 3.625" 9.2
2 17 1 3.75" 9.5
2.5 18 1.5 4" 10.2
3 18 2 4.125" 10.5

This site uses cookies, read more about it here.

Shoe Size Guide - Canadian, American & European Size Conversions (2024)
Top Articles
Latest Posts
Article information

Author: Roderick King

Last Updated:

Views: 6246

Rating: 4 / 5 (51 voted)

Reviews: 82% of readers found this page helpful

Author information

Name: Roderick King

Birthday: 1997-10-09

Address: 3782 Madge Knoll, East Dudley, MA 63913

Phone: +2521695290067

Job: Customer Sales Coordinator

Hobby: Gunsmithing, Embroidery, Parkour, Kitesurfing, Rock climbing, Sand art, Beekeeping

Introduction: My name is Roderick King, I am a cute, splendid, excited, perfect, gentle, funny, vivacious person who loves writing and wants to share my knowledge and understanding with you.