ISO 6346 Modulo-11 Shipping Container Check Digit Formula & Step-by-Step
Step-by-step Modulo-11 check digit calculation for 11-character intermodal container numbers.
Quick Technical Summary: Step-by-step Modulo-11 check digit calculation for 11-character intermodal container numbers. Implementation conforms to ISO 6346 / BIC Container Prefix Coding.
Specification & Structural Breakdown
The 11th digit is a check digit calculated using powers of 2 weights (2^0 to 2^9) with letters converted to values where multiples of 11 (11, 22, 33) are excluded.
| Letters | Assigned Values | Rule |
|---|---|---|
| A - J | 10, 12, 13, 14, 15, 16, 17, 18, 19, 20 | 11 is skipped |
| K - U | 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32 | 22 is skipped |
| V - Z | 34, 35, 36, 37, 38 | 33 is skipped |
Test ISO 6346 Modulo-11 Shipping Container Check Digit Formula & Step-by-Step Live
Paste raw inputs up to 32KB and inspect deterministic parsed JSON in real-time across 330+ Cloudflare edge locations. Pure compute, zero cold-starts.
Parsed JSON Response Model
The edge microservice transforms input payloads into strongly-typed hierarchical JSON with zero cold starts:
{
"containerNumber": "CSQU3054383",
"checkDigit": 3,
"checkDigitCalculated": 3,
"valid": true
}
Copy-Paste Integration Code
Integrate this validator directly into your application using your production API key:
curl --request POST \
--url "https://iso-6346-container-chassis-check-digit-validator.stanzaapi.com/api/v1/container/validate" \
--header "Content-Type: application/json" \
--header "x-api-key: YOUR_API_KEY" \
--data '{
"containerNumber": "CSQU3054383",
"sizeTypeCode": "45G1"
}'
const response = await fetch("https://iso-6346-container-chassis-check-digit-validator.stanzaapi.com/api/v1/container/validate", {
method: "POST",
headers: {
"Content-Type": "application/json",
"x-api-key": process.env.API_KEY || "YOUR_API_KEY"
},
body: JSON.stringify({
"containerNumber": "CSQU3054383",
"sizeTypeCode": "45G1"
})
});
const data = await response.json();
console.log(data);
import requests
import json
url = "https://iso-6346-container-chassis-check-digit-validator.stanzaapi.com/api/v1/container/validate"
headers = {
"Content-Type": "application/json",
"x-api-key": "YOUR_API_KEY"
}
payload = {
"containerNumber": "CSQU3054383",
"sizeTypeCode": "45G1"
}
response = requests.post(url, json=payload, headers=headers)
print(response.json())
package main
import (
"bytes"
"fmt"
"io"
"net/http"
"os"
)
func main() {
url := "https://iso-6346-container-chassis-check-digit-validator.stanzaapi.com/api/v1/container/validate"
payload := []byte(`{"containerNumber":"CSQU3054383","sizeTypeCode":"45G1"}`)
req, _ := http.NewRequest("POST", url, bytes.NewBuffer(payload))
req.Header.Add("Content-Type", "application/json")
req.Header.Add("x-api-key", os.Getenv("API_KEY"))
res, err := http.DefaultClient.Do(req)
if err != nil {
panic(err)
}
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}
Frequently Asked Questions & Technical Notes
According to ISO 6346, if the remainder is 10, the check digit is designated as 0.
Related ISO 6346 Container & Chassis Check-Digit Validator API Formats
Explore sibling specifications and standards in the same developer cluster:
BIC Bureau International des Conteneurs 3-Letter Owner Prefix Spec
Verify 3-letter BIC owner prefixes for shipping lines, container leasing companies, and rail operators.
View Format →ISO 6346 4-Character Container Size and Type Code Directory
Decode ISO 6346 4-character size and type codes into precise metric and imperial dimensions and cargo types.
View Format →ISO 6346 Equipment Category Identifiers (U, J, Z)
Understand the 4th position equipment category identifier letters (U, J, Z) in container numbers.
View Format →