53033 FipsDecoder
06065 County FIPS Code

Riverside County

California · County seat: Riverside · Active county or equivalent

View on CensusDepth ↗

FIPS code 06065 is Riverside County, California. With a population of 2,429,487 (2022 ACS estimate), it ranks #4 in California and #10 nationally. Riverside County is part of the Riverside-San Bernardino-Ontario, 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

06065

State FIPS

06

CA

Population

2,429,487

2022 ACS · #10 nationally

Density

337.1/mi²

people per sq mile

Land Area

7,206

sq miles

Urban/Rural

Metro — 1M+ population

RUCC 1

How This FIPS Code Works

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

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

Census ACS Data for FIPS 06065

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

Median Household Income

$84,505

ACS B19013_001E

Poverty Rate

11.4%

ACS B17001 (below poverty level)

Median Age

36.3

ACS B01002_001E

Metropolitan Area

Adjacent Counties (5)

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

Federal Datasets Using Code 06065

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

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

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

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

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

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

ZIP Code % in county
92883 100.0%
92586 100.0%
92587 100.0%
92590 100.0%
92591 100.0%
92592 100.0%
92595 100.0%
92596 100.0%
92860 100.0%
92879 100.0%
92881 100.0%
92882 100.0%
91752 100.0%
92201 100.0%
92203 100.0%
92210 100.0%
92211 100.0%
92220 100.0%
92223 100.0%
92230 100.0%
92234 100.0%
92236 100.0%
92239 100.0%
92240 100.0%
92241 100.0%
92253 100.0%
92254 100.0%
92258 100.0%
92260 100.0%
92262 100.0%

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

Other Counties in California