53033 FipsDecoder
34039 County FIPS Code

Union County

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

View on CensusDepth ↗

FIPS code 34039 is Union County, New Jersey. With a population of 572,079 (2022 ACS estimate), it ranks #7 in New Jersey and #118 nationally. Union 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

34039

State FIPS

34

NJ

Population

572,079

2022 ACS · #118 nationally

Density

5,561.7/mi²

people per sq mile

Land Area

103

sq miles

Urban/Rural

Metro — 1M+ population

RUCC 1

How This FIPS Code Works

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

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

Census ACS Data for FIPS 34039

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

Median Household Income

$95,000

ACS B19013_001E

Poverty Rate

8.9%

ACS B17001 (below poverty level)

Median Age

39.0

ACS B01002_001E

Metropolitan Area

Adjacent Counties (6)

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

Federal Datasets Using Code 34039

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

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

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

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

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

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

ZIP Code % in county
07016 100.0%
07023 100.0%
07027 100.0%
07033 100.0%
07036 100.0%
07208 100.0%
07901 100.0%
07922 100.0%
07974 100.0%
07065 100.0%
07066 100.0%
07076 100.0%
07081 100.0%
07083 100.0%
07088 100.0%
07090 100.0%
07092 100.0%
07201 100.0%
07202 100.0%
07203 100.0%
07204 100.0%
07205 100.0%
07206 100.0%
07062 87.8%
07060 62.4%
07063 61.0%
08812 1.2%

Other Counties in New Jersey