Brunei addresses end with a six-character postcode that encodes the district, mukim, and village in two letters and four digits. Western forms treat it as a US-style ZIP and mangle it. Here is the correct structure, a real example, the postcode rules, and the mistakes that trigger failed deliveries.
A Bruneian label runs recipient, the building or lot number and street, then the town, then the six-character postcode, then the country. Districts and mukims are encoded in the postcode rather than written as separate lines.
Hj Mohammad Hassan personal or business recipient; Awang or Dayang may precede the nameSyarikat Maju Sdn Bhd optional, above the street lineNo. 12, Simpang 88, Jalan Sultan lot or house number, simpang (junction), then the jalan (road)Bandar Seri Begawan the town or settlementBS8811 two letters then four digits, no spaceBRUNEI DARUSSALAM required for inbound international shipmentsThe Bruneian postcode is a structured code, not a numeric ZIP. The first letter is the district (B Brunei-Muara, K Belait, T Tutong, P Temburong), the second is the mukim, the first two digits are the village (kampong), and the last two are the delivering post office, so all six characters carry routing meaning.
Format: Six characters, two uppercase letters then four digits, written as BS8811 with no space. The letters encode the district and mukim; the digits encode the village and post office.
Validation regex: ^[A-Z]{2} ?\d{4}$
Watch for: the postcode split with a space (BS 8811), a digit typed for the leading letters, or the code dropped because a form expects numbers only.
The country-specific rules that generic autocomplete and single-line address fields tend to get wrong.
A Brunei postcode is AANNNN, for example BS8811. A form that accepts digits only cannot store it, and treating it as a five-digit ZIP drops or corrupts the code.
The opening letter fixes the district: B for Brunei-Muara, K for Belait, T for Tutong, P for Temburong. Getting the first letter wrong routes the parcel to the wrong district even when the rest is correct.
The six characters run together with no internal space: BS8811, not BS 8811. An inserted space causes lookup failures in address databases that expect the solid form.
Brunei streets use Jalan (road) and Simpang (junction), so an address reads Simpang 88, Jalan Sultan. Dropping the simpang number leaves the courier without the specific turning.
Each of these passes a basic "is this field filled in" check but fails at the carrier, turning into a redelivery, a return, or an address correction fee.
BS8811 and silently drops the letters that carry the district.BS 8811 breaks lookups that expect the solid six-character form.K for B) sends the parcel to the wrong district.Simpang 88) leaves the street address incomplete for last-mile delivery.How the major carriers handle Brunei addresses, and what your label needs to satisfy each one.
The national postal operator (Jabatan Perkhidmatan Pos) and last-mile partner for most inbound mail. Routing keys off the six-character postcode, so validate it first.
The express service of the national post for domestic and international parcels. It expects the full postcode, town and street with the simpang number for accurate delivery.
International carriers for inbound shipments. Include the country line; they apply address correction fees when the postcode or town forces a manual fix.
Address Guard checks Brunei addresses against carrier and postal databases before the order ships, normalizes the format, and flags the errors that cause failed deliveries. 240+ countries, $0.05 per check.
Part of the Address Guard international address format guide, covering 240+ countries.