53033 FipsDecoder
Independent city — not a county. Hartford County has its own 5-digit FIPS code and appears as a county equivalent in federal datasets. It is administratively separate from any surrounding county.
09003 County FIPS Code

Hartford County

Connecticut · County seat: Hartford · Independent city (not a county)

View on CensusDepth ↗

FIPS code 09003 is Hartford County, Connecticut. The state FIPS code for Connecticut is 09. This code is used in Census Bureau, BLS, EPA, HUD, and USDA federal datasets to identify this county.

County FIPS

09003

State FIPS

09

CT

Land Area

735

sq miles

How This FIPS Code Works

09 003
09 = State FIPS (Connecticut)
003 = County FIPS

The 5-digit FIPS code 09003 is formed by combining the 2-digit state identifier 09 (Connecticut) with the 3-digit county identifier 003. Together they uniquely identify Hartford County in every US federal dataset. No two counties share the same 5-digit FIPS code.

Adjacent Counties (6)

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

Federal Datasets Using Code 09003

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

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

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

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

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

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

ZIP Code % in county
06489 100.0%
06002 100.0%
06010 100.0%
06013 100.0%
06016 100.0%
06019 100.0%
06020 100.0%
06022 100.0%
06023 100.0%
06026 100.0%
06027 100.0%
06032 100.0%
06033 100.0%
06035 100.0%
06037 100.0%
06040 100.0%
06042 100.0%
06051 100.0%
06052 100.0%
06053 100.0%
06059 100.0%
06060 100.0%
06062 100.0%
06479 100.0%
06001 100.0%
06067 100.0%
06070 100.0%
06073 100.0%
06074 100.0%
06078 100.0%

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

Other Counties in Connecticut