53033 FipsDecoder
Independent city — not a county. Litchfield 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.
09005 County FIPS Code

Litchfield County

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

View on CensusDepth ↗

FIPS code 09005 is Litchfield 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

09005

State FIPS

09

CT

Land Area

921

sq miles

How This FIPS Code Works

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

The 5-digit FIPS code 09005 is formed by combining the 2-digit state identifier 09 (Connecticut) with the 3-digit county identifier 005. Together they uniquely identify Litchfield 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 Litchfield County. Useful for regional analysis — these are the geographies you'd typically include when studying labor markets, commuting zones, or environmental spillovers around FIPS 09005.

Federal Datasets Using Code 09005

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

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

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

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

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

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

ZIP Code % in county
06798 100.0%
06021 100.0%
06024 100.0%
06031 100.0%
06039 100.0%
06057 100.0%
06058 100.0%
06061 100.0%
06063 100.0%
06796 100.0%
06018 100.0%
06068 100.0%
06069 100.0%
06079 100.0%
06098 100.0%
06750 100.0%
06751 100.0%
06752 100.0%
06753 100.0%
06754 100.0%
06755 100.0%
06756 100.0%
06757 100.0%
06758 100.0%
06759 100.0%
06763 100.0%
06776 100.0%
06777 100.0%
06778 100.0%
06779 100.0%

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

Other Counties in Connecticut