Square Feet to Acres Converter
Convert square feet to acres instantly. Perfect for real estate listings and land area calculations.
Formula: ft² × 0.0000229568 = acres
Common Conversions
How to convert square feet to acres
Converting square feet to acres is a single multiplication. The formula is ft² × 0.0000229568 = acres, which means one square foot equals 0.0000229568 ac. Going the other way, one acre equals 43,560.0781 ft².
The calculator above applies this automatically as you type, but it is worth knowing the arithmetic if you need to sanity-check a figure or work one out without a device to hand.
Worked examples
7 ft² to ac: multiply 7 by 0.0000229568, which gives 0.000160698 ac.
45 ft² to ac: multiply 45 by 0.0000229568, which gives 0.00103306 ac.
250 ft² to ac: multiply 250 by 0.0000229568, which gives 0.0057392 ac.
Square Feet to Acres conversion table
The values below are calculated with the same function as the converter above, so they agree to the digit. Use it as a quick reference when you need a rough figure without typing anything.
| Square feet | Acres |
|---|---|
| 1 ft² | 0.0000229568 ac |
| 2 ft² | 0.0000459136 ac |
| 3 ft² | 0.0000688704 ac |
| 4 ft² | 0.0000918272 ac |
| 5 ft² | 0.000114784 ac |
| 6 ft² | 0.000137741 ac |
| 7 ft² | 0.000160698 ac |
| 8 ft² | 0.000183654 ac |
| 9 ft² | 0.000206611 ac |
| 10 ft² | 0.000229568 ac |
| 15 ft² | 0.000344352 ac |
| 20 ft² | 0.000459136 ac |
| 25 ft² | 0.00057392 ac |
| 30 ft² | 0.000688704 ac |
| 40 ft² | 0.000918272 ac |
| 50 ft² | 0.00114784 ac |
| 75 ft² | 0.00172176 ac |
| 100 ft² | 0.00229568 ac |
| Acres | Square feet |
|---|---|
| 1 ac | 43,560.0781 ft² |
| 5 ac | 217,800.3903 ft² |
| 10 ac | 435,600.7806 ft² |
| 25 ac | 1,089,001.9515 ft² |
| 50 ac | 2,178,003.903 ft² |
| 100 ac | 4,356,007.806 ft² |
| 250 ac | 10,890,019.5149 ft² |
| 500 ac | 21,780,039.0298 ft² |
| 1000 ac | 43,560,078.0597 ft² |
What is a square foot?
A square foot is the area of a square one foot on each side, equal to 144 square inches or about 0.0929 square meters. It is written as sq ft or ft².
Where the square foot came from
It follows directly from the foot and came into standard use for property and construction measurement in English-speaking countries as building trades formalised their pricing by area.
Where square feet are used today
Square feet are how American and British property listings state floor area, and how flooring, paint, and carpet are priced and sold. Commercial rent in the US is quoted per square foot per year.
- A parking space is about 160 sq ft
- A US bedroom averages 130 to 200 sq ft
- A typical US home is around 2,300 sq ft
What is a acre?
An acre is 43,560 square feet, or 4,840 square yards, or about 4,047 square meters. It is a unit of area only, with no fixed shape.
Where the acre came from
An acre was originally the area a man with a team of oxen could plough in one day: one furlong long by one chain wide, which is 660 feet by 66 feet. That long, narrow shape is why the number 43,560 looks arbitrary rather than round.
Where acres are used today
Acres measure farmland, development sites, and large residential lots in the United States and the United Kingdom. Most other countries use hectares, where one hectare is 10,000 square meters or about 2.47 acres.
- An American football field is about 1.32 acres
- A soccer pitch is roughly 1.76 acres
- A typical US suburban lot is 0.2 to 0.3 acres
When you actually need this conversion
Both units belong to the imperial / us customary family, so this conversion usually comes up when a figure needs restating at a more convenient scale rather than when crossing between systems.
Property listings and floor area
Homes are advertised in square feet or square meters depending on the country, and the numbers are far enough apart that mixing them up gives a wildly wrong impression of size. Comparing listings across markets requires one common unit.
Flooring, paint, and materials
Materials are priced and sold by area, and coverage figures on the packaging use the manufacturer's unit. Ordering by an unconverted number means either running short mid-job or paying for surplus.
Land and agriculture
Farmland is measured in acres in the US and UK and hectares nearly everywhere else. Yield figures, subsidies, and land prices are all quoted per unit area, so the conversion carries directly into money.
Planning permissions and regulations
Building codes set limits on footprint, coverage, and minimum room sizes in the local unit. Working from plans drawn in another system means converting before checking compliance.
Accuracy, precision, and rounding
The factor used here (ft² × 0.0000229568 = acres) is derived from an internationally agreed exact definition, so the conversion itself is not an approximation. The results above are shown to about eight significant figures, which is more precision than almost any practical use requires.
The sensible rule is to round the answer to roughly the same precision as the number you started with. If you measured to the nearest square foot, an answer carrying six decimal places is not more accurate, it just looks more accurate. For most everyday purposes one or two decimal places is plenty.
Common mistakes to avoid
Converting in the wrong direction
Multiplying when you should divide is by far the most common error, and it is easy to miss because the result is still a number in a believable range. A quick check: since one square foot is 0.0000229568 ac, a square foot value should get smaller when converted.
Using a rounded factor for a long calculation
Rounding the conversion factor before multiplying, then repeating that across many values, compounds the error. Convert with the full factor and round only the final answer.
Converting square feet to acres in a spreadsheet or in code
A one-off answer is what the calculator above is for. When you have a whole column of figures, or you are writing something that has to do the conversion repeatedly, it is worth putting the formula in the tool you are already working in.
Excel and Google Sheets
With your square foot value in cell A1, put this in B1 and fill it down the column:
=A1 * 0.0000229568
Excel also ships a built-in CONVERT function that handles many unit pairs directly, but it does not cover every unit and its unit codes are easy to mistype. An explicit formula like the one above is harder to get wrong and shows its working.
Python
def ft_to_ac(value):
return value * 0.0000229568
print(ft_to_ac(10))JavaScript
const ftToAc = (value) => value * 0.0000229568; console.log(ftToAc(10));
Store the factor as a named constant rather than typing 0.0000229568 at each call site. When a figure appears in three places it will eventually be updated in two of them.
The two measurement systems behind this conversion
Both square feet and acres sit within the imperial / us customary system, so this is a conversion of scale rather than of system. That makes it a straightforward relationship, with none of the historical baggage that comes from reconciling two systems built on different foundations.
Because the units share a system, converting between them rarely introduces the kind of error that catches people out when crossing systems. The main risk is simply moving the decimal point the wrong way.
More questions about square feet and acres
Is the conversion exact or approximate?
The underlying definition is exact, and the factor shown here (0.0000229568) is that definition expressed to the precision this page displays. For any everyday purpose the result is exact; only at very high precision would you need more digits of the factor.
Why does the answer have so many decimal places?
The converter shows a high-precision result so that it is never the limiting factor in your calculation. It is up to you to round to something sensible. A measurement taken with a tape measure does not become more accurate because the conversion carried six decimals.
Can I convert in the opposite direction on this page?
Yes. The swap button in the calculator reverses the conversion and carries the current result across as the new input, so you do not have to navigate anywhere or retype anything. The second table above also lists the reverse conversion directly.
Does anything get sent to a server?
No. The arithmetic runs in your browser with a few lines of JavaScript. Nothing you type is uploaded, logged, or stored, which also means the converter keeps working if your connection drops after the page has loaded.
Which figure should I use on an official form?
Use whatever precision the form asks for, and if it does not say, match the precision of the original measurement. For height, weight, and similar personal details, one decimal place is almost always sufficient and often more than is wanted.
Related area conversions
If you need to go the other way as a starting point rather than as a swap, the Acres to Square Feet converter is the mirror of this page: same factor, same tables, opposite direction. It is the more natural place to start when most of your figures are already in acres.
This is a small category, so the list below reaches into the other measurement families as well:
- CM to Inches - Convert centimeters to inches instantly. Enter any value and get the exact result in decimal inches.
- KG to LBS - Convert kilograms to pounds instantly. Perfect for fitness, cooking, and shipping calculations.
- Celsius to Fahrenheit - Convert Celsius to Fahrenheit instantly. Essential for weather, cooking, and science.
- Liters to Gallons - Convert liters to US gallons quickly. Great for fuel economy, cooking, and tank sizes.
- MPH to KPH - Convert miles per hour to kilometers per hour instantly. Perfect for travel and speed limits.
- Radians to Degrees - Convert radians to degrees instantly. Essential for mathematics, physics, and engineering.
For anything not listed here, the full converter directory covers over a hundred pairs across length, weight, temperature, volume, area, speed, pressure, energy, and more.
Quick reference
| 1 ft² equals | 0.0000229568 ac |
| 1 ac equals | 43,560.0781 ft² |
| Formula | ft² × 0.0000229568 = acres |
| Square feet system | Imperial / US customary |
| Acres system | Imperial / US customary |
| Measures | Area |
Why Use Our Square Feet to Acres Converter?
Instant Results
Type any square feet value and see the acres result immediately as you type.
Highly Accurate
Uses the exact conversion factor. ft² × 0.0000229568 = acres
Swap Direction
Easily convert Acres back to Square Feet with the swap button. No need to visit a different page.
One-Click Copy
Copy the converted result to your clipboard instantly with the Copy button.
Common Values Table
See a quick reference table of 9 common square feet values and their acres equivalents.
100% Private
All conversions happen in your browser. Nothing is sent to a server or stored anywhere.
Frequently Asked Questions
How many acres in a square feet?
1 ft² = 0.0000229568 ac. Use the formula: ft² × 0.0000229568 = acres.
How to convert square feet to acres?
To convert square feet to acres, use the formula: ft² × 0.0000229568 = acres. For example, 43560 ft² = 1 ac.
Is this square feet to acres converter accurate?
Yes. The converter uses the internationally accepted exact conversion factor. The result is accurate to at least 6 significant figures.
Can I convert acres back to square feet?
Yes. Click the "Swap direction" button to reverse the conversion. The current result becomes the new input automatically.
Does this work on mobile?
Yes. The converter works on all devices, phones, tablets, and desktops. All calculations happen in your browser.
Is my data stored anywhere?
No. All conversions run entirely in your browser. Nothing is uploaded, logged, or stored.
All Tools
Every tool, in one place.
290+ free tools. All run in your browser, no sign-up, no uploads, nothing stored.
Text Tools (24)
View allPDF Tools (16)
View allImage Tools (20)
View allUnit Converters (110)
View allCalculators (34)
View allMedia Tools (30)
View allGames and Puzzles (17)
View allDeveloper Tools (8)
Fun and Random (19)
View allDesign and Color (4)
Time Tools (6)
