53033 FipsDecoder
08123 County FIPS Code

Weld County

Colorado · County seat: Greeley · Active county or equivalent

View on CensusDepth ↗

FIPS code 08123 is Weld County, Colorado. With a population of 331,466 (2022 ACS estimate), it ranks #8 in Colorado and #215 nationally. Weld County is part of the Greeley, CO. The state FIPS code for Colorado is 08. This code is used in Census Bureau, BLS, EPA, HUD, and USDA federal datasets to identify this county.

County FIPS

08123

State FIPS

08

CO

Population

331,466

2022 ACS · #215 nationally

Density

83.1/mi²

people per sq mile

Land Area

3,987

sq miles

Urban/Rural

Metro — 250K–1M population

RUCC 2

How This FIPS Code Works

08 123
08 = State FIPS (Colorado)
123 = County FIPS

The 5-digit FIPS code 08123 is formed by combining the 2-digit state identifier 08 (Colorado) with the 3-digit county identifier 123. Together they uniquely identify Weld County in every US federal dataset. No two counties share the same 5-digit FIPS code.

Census ACS Data for FIPS 08123

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

Median Household Income

$89,182

ACS B19013_001E

Poverty Rate

9.7%

ACS B17001 (below poverty level)

Median Age

35.0

ACS B01002_001E

Metropolitan Area

Adjacent Counties (8)

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

Federal Datasets Using Code 08123

FIPS code 08123 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 08123 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 08123
import requests

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

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

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

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

ZIP Codes in Weld 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 Weld County. Why FIPS ≠ ZIP →

ZIP Code % in county
80650 100.0%
80754 100.0%
80514 100.0%
80623 100.0%
80624 100.0%
80631 100.0%
80634 100.0%
80644 100.0%
80645 100.0%
80646 100.0%
80648 100.0%
80520 100.0%
80530 100.0%
80732 100.0%
80542 100.0%
80543 100.0%
80546 100.0%
80729 100.0%
80652 100.0%
80651 100.0%
80610 100.0%
80611 100.0%
80615 100.0%
80620 100.0%
80621 100.0%
80622 100.0%
80742 92.7%
80550 90.7%
80643 88.6%
80612 84.8%

Showing top 30 of 43 ZIP codes by residential address share.

Other Counties in Colorado