Skip to Content

Oceania Countries: Complete List with ISO 3166 Codes

Oceania spans the vast Pacific Ocean and includes Australia, New Zealand, and hundreds of islands grouped into three cultural-geographic regions: Melanesia, Micronesia, and Polynesia. The continent has 25 entries in the ISO 3166 standard, ranging from a continent-sized country (Australia) to some of the smallest nations on Earth.

Quick Access with Code

import { geography } from '@koshmoney/countries/geography'; import { country } from '@koshmoney/countries'; const oceaniaCodes = geography.getCountriesByContinent('Oceania'); // ['AS', 'AU', 'CC', 'CK', 'CX', 'FJ', 'FM', 'GU', 'KI', 'MH', ...] const oceaniaCountries = oceaniaCodes.map((code) => country.whereAlpha2(code)); console.log(oceaniaCountries.length); // 25

Australia and New Zealand

CountryAlpha-2Alpha-3Numeric
AustraliaAUAUS036
Christmas IslandCXCXR162
Cocos IslandsCCCCK166
New ZealandNZNZL554
Norfolk IslandNFNFK574

Australia (AU) is by far the largest country in Oceania and the sixth-largest in the world by land area. New Zealand (NZ) is the second-largest and second most populous country in the subregion. Christmas Island, Cocos Islands, and Norfolk Island are Australian external territories with their own ISO codes.

import { geography } from '@koshmoney/countries/geography'; geography.getCountriesByRegion('Australia and New Zealand'); // ['AU', 'CC', 'CX', 'NF', 'NZ']

Subdivisions

import { subdivision } from '@koshmoney/countries'; const australianStates = subdivision.forCountry('AU'); // [{ code: 'AU-ACT', name: 'Australian Capital Territory', type: 'Territory', ... }, ...] const nzRegions = subdivision.forCountry('NZ'); // [{ code: 'NZ-AUK', name: 'Auckland', type: 'Region', ... }, ...]

Melanesia

CountryAlpha-2Alpha-3Numeric
FijiFJFJI242
New CaledoniaNCNCL540
Papua New GuineaPGPNG598
Solomon IslandsSBSLB090
VanuatuVUVUT548

Papua New Guinea (PG) is the largest Melanesian country and one of the most linguistically diverse countries in the world, with over 800 languages spoken. New Caledonia (NC) is a French special collectivity with its own ISO code.

[!NOTE] New Caledonia (NC) uses the CFP Franc (XPF), the same currency used in French Polynesia. This is a remnant of the French colonial period and is pegged to the Euro.

Micronesia

CountryAlpha-2Alpha-3Numeric
GuamGUGUM316
KiribatiKIKIR296
Marshall IslandsMHMHL584
Micronesia, Federated States OfFMFSM583
NauruNRNRU520
Northern Mariana IslandsMPMNP580
PalauPWPLW585

Micronesia consists of thousands of small islands across the western and central Pacific. Several of these nations use the US Dollar as their official currency due to their Compact of Free Association with the United States: the Federated States of Micronesia (FM), the Marshall Islands (MH), and Palau (PW). Guam (GU) and the Northern Mariana Islands (MP) are US territories.

import { currency } from '@koshmoney/countries/currency'; currency.getCurrency('FM'); // { code: 'USD', symbol: '$', name: 'US Dollar' } currency.getCurrency('MH'); // { code: 'USD', symbol: '$', name: 'US Dollar' } currency.getCurrency('PW'); // { code: 'USD', symbol: '$', name: 'US Dollar' }

Polynesia

CountryAlpha-2Alpha-3Numeric
American SamoaASASM016
Cook IslandsCKCOK184
French PolynesiaPFPYF258
NiueNUNIU570
PitcairnPNPCN612
SamoaWSWSM882
TokelauTKTKL772
TongaTOTON776
TuvaluTVTUV798
Wallis & Futuna IslandsWFWLF876

Polynesia is the largest subregion by number of entries (10) and stretches across the widest expanse of the Pacific. Note the distinction between Samoa (WS) and American Samoa (AS) — they share cultural heritage but have separate ISO codes and different currencies.

Tuvalu (TV) is notable for its .tv domain, which has become a significant source of national revenue through licensing to media companies.

import { geography } from '@koshmoney/countries/geography'; geography.getCountriesByRegion('Polynesia'); // ['AS', 'CK', 'NU', 'PF', 'PN', 'TK', 'TO', 'TV', 'WF', 'WS']

Currencies

Oceania has a diverse currency landscape. Australia and New Zealand have their own well-known currencies, while many Pacific island nations use the US Dollar or currencies pegged to it:

import { currency } from '@koshmoney/countries/currency'; currency.getCurrency('AU'); // { code: 'AUD', symbol: '$', name: 'Australian Dollar' } currency.getCurrency('NZ'); // { code: 'NZD', symbol: '$', name: 'New Zealand Dollar' } currency.getCurrency('FJ'); // { code: 'FJD', symbol: '$', name: 'Fijian Dollar' } currency.getCurrency('PG'); // { code: 'PGK', symbol: 'K', name: 'Papua New Guinean Kina' }

The Cook Islands (CK), Niue (NU), and Tokelau (TK) use the New Zealand Dollar, reflecting their close political relationship with New Zealand.

Working with Oceania Data

Filter Oceania countries by currency

import { geography } from '@koshmoney/countries/geography'; import { currency } from '@koshmoney/countries/currency'; import { country } from '@koshmoney/countries'; const oceaniaCodes = geography.getCountriesByContinent('Oceania'); // Find all Oceania countries using the US Dollar const usdCountries = oceaniaCodes.filter((code) => { const curr = currency.getCurrency(code); return curr?.code === 'USD'; }); usdCountries.map((code) => country.toName(code)); // ['American Samoa', 'Guam', 'Marshall Islands', 'Micronesia, Federated States Of', ...]

Get dial codes for Pacific island nations

import { geography } from '@koshmoney/countries/geography'; import { dialCode } from '@koshmoney/countries/dialCode'; import { country } from '@koshmoney/countries'; const oceaniaCodes = geography.getCountriesByContinent('Oceania'); const phoneCodes = oceaniaCodes .map((code) => ({ country: country.toName(code), code, dialCode: dialCode.getDialCode(code), })) .filter((c) => c.dialCode); // [{ country: 'Australia', code: 'AU', dialCode: '+61' }, ...]

Summary

Oceania has 25 entries in the ISO 3166 standard across 4 UN M49 subregions: Australia and New Zealand (5), Melanesia (5), Micronesia (7), and Polynesia (10). Despite having fewer entries than other continents, Oceania spans the largest geographic area — the Pacific Ocean covers a third of the Earth’s surface. The @koshmoney/countries library provides consistent access to all Oceanian country data through its geography, currency, and dial code modules.