53033 FipsDecoder
40093 County FIPS Code

Major County

Oklahoma · County seat: Fairview · Active county or equivalent

View on CensusDepth ↗

FIPS code 40093 is Major County, Oklahoma. With a population of 7,678 (2022 ACS estimate), it ranks #63 in Oklahoma and #2670 nationally. The state FIPS code for Oklahoma is 40. This code is used in Census Bureau, BLS, EPA, HUD, and USDA federal datasets to identify this county.

County FIPS

40093

State FIPS

40

OK

Population

7,678

2022 ACS · #2670 nationally

Density

8.0/mi²

people per sq mile

Land Area

955

sq miles

Urban/Rural

Nonmetro — rural, adjacent to metro

RUCC 8

How This FIPS Code Works

40 093
40 = State FIPS (Oklahoma)
093 = County FIPS

The 5-digit FIPS code 40093 is formed by combining the 2-digit state identifier 40 (Oklahoma) with the 3-digit county identifier 093. Together they uniquely identify Major County in every US federal dataset. No two counties share the same 5-digit FIPS code.

Census ACS Data for FIPS 40093

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

Median Household Income

$67,621

ACS B19013_001E

Poverty Rate

11.7%

ACS B17001 (below poverty level)

Median Age

42.2

ACS B01002_001E

Adjacent Counties (7)

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

Federal Datasets Using Code 40093

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

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

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

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

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

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

ZIP Code % in county
73737 100.0%
73747 100.0%
73768 98.2%
73760 95.2%
73729 84.1%
73838 82.7%
73718 76.3%
73860 38.6%
73754 36.0%
73755 29.3%
73763 11.8%
73716 8.2%
73735 3.7%
73663 3.3%
73852 1.6%

Other Counties in Oklahoma

Adair County 40001 Alfalfa County 40003 Atoka County 40005 Beaver County 40007 Beckham County 40009 Blaine County 40011 Bryan County 40013 Caddo County 40015 Canadian County 40017 Carter County 40019 Cherokee County 40021 Choctaw County 40023 Cimarron County 40025 Cleveland County 40027 Coal County 40029 Comanche County 40031 Cotton County 40033 Craig County 40035 Creek County 40037 Custer County 40039 Delaware County 40041 Dewey County 40043 Ellis County 40045 Garfield County 40047 Garvin County 40049 Grady County 40051 Grant County 40053 Greer County 40055 Harmon County 40057 Harper County 40059 Haskell County 40061 Hughes County 40063 Jackson County 40065 Jefferson County 40067 Johnston County 40069 Kay County 40071 Kingfisher County 40073 Kiowa County 40075 Latimer County 40077 Le Flore County 40079 Lincoln County 40081 Logan County 40083 Love County 40085 Marshall County 40095 Mayes County 40097 McClain County 40087 McCurtain County 40089 McIntosh County 40091 Murray County 40099 Muskogee County 40101 Noble County 40103 Nowata County 40105 Okfuskee County 40107 Oklahoma County 40109 Okmulgee County 40111 Osage County 40113 Ottawa County 40115 Pawnee County 40117 Payne County 40119 Pittsburg County 40121 Pontotoc County 40123 Pottawatomie County 40125 Pushmataha County 40127 Roger Mills County 40129 Rogers County 40131 Seminole County 40133 Sequoyah County 40135 Stephens County 40137 Texas County 40139 Tillman County 40141 Tulsa County 40143 Wagoner County 40145 Washington County 40147 Washita County 40149 Woods County 40151 Woodward County 40153