53033 FipsDecoder
06107 County FIPS Code

Tulare County

California · County seat: Visalia · Active county or equivalent

View on CensusDepth ↗

FIPS code 06107 is Tulare County, California. With a population of 473,446 (2022 ACS estimate), it ranks #18 in California and #148 nationally. Tulare County is part of the Visalia, CA. The state FIPS code for California is 06. This code is used in Census Bureau, BLS, EPA, HUD, and USDA federal datasets to identify this county.

County FIPS

06107

State FIPS

06

CA

Population

473,446

2022 ACS · #148 nationally

Density

98.1/mi²

people per sq mile

Land Area

4,824

sq miles

Urban/Rural

Metro — 250K–1M population

RUCC 2

How This FIPS Code Works

06 107
06 = State FIPS (California)
107 = County FIPS

The 5-digit FIPS code 06107 is formed by combining the 2-digit state identifier 06 (California) with the 3-digit county identifier 107. Together they uniquely identify Tulare County in every US federal dataset. No two counties share the same 5-digit FIPS code.

Census ACS Data for FIPS 06107

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

Median Household Income

$64,474

ACS B19013_001E

Poverty Rate

18.5%

ACS B17001 (below poverty level)

Median Age

31.5

ACS B01002_001E

Metropolitan Area

Adjacent Counties (4)

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

Federal Datasets Using Code 06107

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

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

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

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

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

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

ZIP Code % in county
93615 100.0%
93207 100.0%
93208 100.0%
93271 100.0%
93272 100.0%
93277 100.0%
93286 100.0%
93291 100.0%
93292 100.0%
93603 100.0%
93633 100.0%
93647 100.0%
93666 100.0%
93670 100.0%
93673 100.0%
93218 100.0%
93219 100.0%
93221 100.0%
93223 100.0%
93227 100.0%
93235 100.0%
93237 100.0%
93244 100.0%
93247 100.0%
93256 100.0%
93257 100.0%
93258 100.0%
93260 100.0%
93261 100.0%
93262 100.0%

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

Other Counties in California