53033 FipsDecoder
34035 County FIPS Code

Somerset County

New Jersey · County seat: Somerville · Active county or equivalent

View on CensusDepth ↗

FIPS code 34035 is Somerset County, New Jersey. With a population of 344,978 (2022 ACS estimate), it ranks #13 in New Jersey and #207 nationally. Somerset County is part of the New York-Newark-Jersey City, NY-NJ. The state FIPS code for New Jersey is 34. This code is used in Census Bureau, BLS, EPA, HUD, and USDA federal datasets to identify this county.

County FIPS

34035

State FIPS

34

NJ

Population

344,978

2022 ACS · #207 nationally

Density

1,143.0/mi²

people per sq mile

Land Area

302

sq miles

Urban/Rural

Metro — 1M+ population

RUCC 1

How This FIPS Code Works

34 035
34 = State FIPS (New Jersey)
035 = County FIPS

The 5-digit FIPS code 34035 is formed by combining the 2-digit state identifier 34 (New Jersey) with the 3-digit county identifier 035. Together they uniquely identify Somerset County in every US federal dataset. No two counties share the same 5-digit FIPS code.

Census ACS Data for FIPS 34035

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

Median Household Income

$131,948

ACS B19013_001E

Poverty Rate

5.3%

ACS B17001 (below poverty level)

Median Age

42.0

ACS B01002_001E

Metropolitan Area

Adjacent Counties (5)

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

Federal Datasets Using Code 34035

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

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

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

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

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

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

ZIP Code % in county
07059 100.0%
07977 100.0%
08502 100.0%
08553 100.0%
08805 100.0%
08807 100.0%
08821 100.0%
08823 100.0%
08835 100.0%
08836 100.0%
08844 100.0%
08869 100.0%
08873 100.0%
08880 100.0%
08890 100.0%
07069 100.0%
07921 100.0%
07924 100.0%
07939 100.0%
07934 98.4%
08558 95.5%
08528 94.7%
08876 86.1%
07920 81.8%
08812 77.8%
08853 75.9%
07931 75.0%
07063 39.0%
07060 37.6%
08540 26.5%

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

Other Counties in New Jersey