53033 FipsDecoder
17015 County FIPS Code

Carroll County

Illinois · County seat: Mount Carroll · Active county or equivalent

View on CensusDepth ↗

FIPS code 17015 is Carroll County, Illinois. With a population of 15,594 (2022 ACS estimate), it ranks #69 in Illinois and #2112 nationally. The state FIPS code for Illinois is 17. This code is used in Census Bureau, BLS, EPA, HUD, and USDA federal datasets to identify this county.

County FIPS

17015

State FIPS

17

IL

Population

15,594

2022 ACS · #2112 nationally

Density

35.1/mi²

people per sq mile

Land Area

445

sq miles

Urban/Rural

Nonmetro — completely rural

RUCC 9

How This FIPS Code Works

17 015
17 = State FIPS (Illinois)
015 = County FIPS

The 5-digit FIPS code 17015 is formed by combining the 2-digit state identifier 17 (Illinois) with the 3-digit county identifier 015. Together they uniquely identify Carroll County in every US federal dataset. No two counties share the same 5-digit FIPS code.

Census ACS Data for FIPS 17015

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

Median Household Income

$61,539

ACS B19013_001E

Poverty Rate

11.2%

ACS B17001 (below poverty level)

Median Age

45.0

ACS B01002_001E

Adjacent Counties (6)

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

Federal Datasets Using Code 17015

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

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

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

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

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

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

ZIP Code % in county
61285 100.0%
61046 100.0%
61074 98.1%
61051 96.1%
61053 90.3%
61014 85.0%
61078 66.2%
61064 4.3%
61062 2.3%
61270 1.0%
61028 0.3%

Other Counties in Illinois

Adams County 17001 Alexander County 17003 Bond County 17005 Boone County 17007 Brown County 17009 Bureau County 17011 Calhoun County 17013 Cass County 17017 Champaign County 17019 Christian County 17021 Clark County 17023 Clay County 17025 Clinton County 17027 Coles County 17029 Cook County 17031 Crawford County 17033 Cumberland County 17035 De Witt County 17039 DeKalb County 17037 Douglas County 17041 DuPage County 17043 Edgar County 17045 Edwards County 17047 Effingham County 17049 Fayette County 17051 Ford County 17053 Franklin County 17055 Fulton County 17057 Gallatin County 17059 Greene County 17061 Grundy County 17063 Hamilton County 17065 Hancock County 17067 Hardin County 17069 Henderson County 17071 Henry County 17073 Iroquois County 17075 Jackson County 17077 Jasper County 17079 Jefferson County 17081 Jersey County 17083 Jo Daviess County 17085 Johnson County 17087 Kane County 17089 Kankakee County 17091 Kendall County 17093 Knox County 17095 LaSalle County 17099 Lake County 17097 Lawrence County 17101 Lee County 17103 Livingston County 17105 Logan County 17107 Macon County 17115 Macoupin County 17117 Madison County 17119 Marion County 17121 Marshall County 17123 Mason County 17125 Massac County 17127 McDonough County 17109 McHenry County 17111 McLean County 17113 Menard County 17129 Mercer County 17131 Monroe County 17133 Montgomery County 17135 Morgan County 17137 Moultrie County 17139 Ogle County 17141 Peoria County 17143 Perry County 17145 Piatt County 17147 Pike County 17149 Pope County 17151 Pulaski County 17153 Putnam County 17155 Randolph County 17157 Richland County 17159 Rock Island County 17161 Saline County 17165 Sangamon County 17167 Schuyler County 17169 Scott County 17171 Shelby County 17173 St. Clair County 17163 Stark County 17175 Stephenson County 17177 Tazewell County 17179 Union County 17181 Vermilion County 17183 Wabash County 17185 Warren County 17187 Washington County 17189 Wayne County 17191 White County 17193 Whiteside County 17195 Will County 17197 Williamson County 17199 Winnebago County 17201 Woodford County 17203