53033 FipsDecoder
55073 County FIPS Code

Marathon County

Wisconsin · County seat: Wausau · Active county or equivalent

View on CensusDepth ↗

FIPS code 55073 is Marathon County, Wisconsin. With a population of 137,820 (2022 ACS estimate), it ranks #10 in Wisconsin and #467 nationally. Marathon County is part of the Wausau, WI. The state FIPS code for Wisconsin is 55. This code is used in Census Bureau, BLS, EPA, HUD, and USDA federal datasets to identify this county.

County FIPS

55073

State FIPS

55

WI

Population

137,820

2022 ACS · #467 nationally

Density

89.2/mi²

people per sq mile

Land Area

1,545

sq miles

Urban/Rural

Metro — under 250K population

RUCC 3

How This FIPS Code Works

55 073
55 = State FIPS (Wisconsin)
073 = County FIPS

The 5-digit FIPS code 55073 is formed by combining the 2-digit state identifier 55 (Wisconsin) with the 3-digit county identifier 073. Together they uniquely identify Marathon County in every US federal dataset. No two counties share the same 5-digit FIPS code.

Census ACS Data for FIPS 55073

From the 2022 ACS 5-year estimates — the same values you'd retrieve by querying the Census API with county FIPS 55073.

Median Household Income

$73,248

ACS B19013_001E

Poverty Rate

8.3%

ACS B17001 (below poverty level)

Median Age

41.0

ACS B01002_001E

Metropolitan Area

Adjacent Counties (8)

Counties that share a border with Marathon County. Useful for regional analysis — these are the geographies you'd typically include when studying labor markets, commuting zones, or environmental spillovers around FIPS 55073.

Federal Datasets Using Code 55073

FIPS code 55073 appears as the county identifier in the following federal datasets. Analysts joining data across these sources use this code as the common geographic key.

Using FIPS Code 55073 in Code

Common patterns for querying federal datasets by this county's FIPS code. The leading zeros are significant — always treat FIPS codes as strings, not integers.

Census ACS API — Python 55073
import requests

url = "https://api.census.gov/data/2022/acs/acs5"
params = {
    "get":  "NAME,B19013_001E,B01003_001E",
    "for":  "county:073",
    "in":   "state:55",
    "key":  "YOUR_CENSUS_API_KEY",
}
r = requests.get(url, params=params)
data = r.json()  # [[header...], [Marathon County, Wisconsin, income, pop, ...]
SQL — filtering by county FIPS 55073
-- 5-digit combined FIPS (state + county)
SELECT * FROM your_table WHERE county_fips = '55073';

-- Some datasets store state and county separately
SELECT * FROM your_table
WHERE state_fips = '55'
  AND county_fips = '073';

-- ⚠ Never cast to integer — leading zeros are lost:
-- county_fips = 55073 is WRONG for this county
R — tidycensus 55073
library(tidycensus)

get_acs(
  geography = "county",
  variables = c(income = "B19013_001E", pop = "B01003_001E"),
  state     = "55",
  county    = "073",
  year      = 2022
)
Zero-padding reminder: FIPS codes must always be stored and compared as zero-padded strings. 55 (not 55) and 073 (not 73) — losing the leading zeros is one of the most common data-join bugs in federal datasets. Full guide →

ZIP Codes in Marathon County

ZIP codes do not align perfectly with county boundaries — a single ZIP code can span multiple counties, and a county can contain parts of many ZIP codes. The ratios below (from the Census 2020 ZCTA relationship file) show the land area share of each ZCTA that falls within Marathon County. Why FIPS ≠ ZIP →

ZIP Code % in county
54474 100.0%
54403 100.0%
54401 100.0%
54417 100.0%
54426 100.0%
54440 100.0%
54448 100.0%
54484 100.0%
54476 100.0%
54471 100.0%
54411 94.3%
54455 92.7%
54408 86.8%
54427 76.0%
54405 75.3%
54421 55.1%
54488 46.4%
54479 43.8%
54414 38.5%
54412 35.2%
54425 31.3%
54499 29.7%
54449 28.4%
54473 23.7%
54452 10.6%
54409 8.5%
54480 7.8%
54451 1.7%
54443 0.1%

Other Counties in Wisconsin