Gallons to Fluid Ounces

Convert gallons to fluid ounces instantly, with a reference table.

Gallons (US) to Fluid Ounces (US) conversion table
Gallons (US) (gal)Fluid Ounces (US) (fl oz)
1128
2256
3384
4512
5640
6768
7896
81,024
91,152
101,280
Formula: 1 gal = 128 fl oz. To convert, multiply your gallons (us) figure by 128.

Free to use — premium coming soon

FREE
  • Instant conversion
  • Reference table
  • Reverse direction
PREMIUM
  • Remove ads
  • Custom table ranges
  • Bulk conversions

About the Gallons to Fluid Ounces

The Gallons to Fluid Ounces converter turns any gallon figure into fluid ounces instantly, using the standard US relationship of 128 fluid ounces per gallon. Whether you start with a whole number like 3 gallons, a fraction like 0.75, or a decimal pulled from a label, the tool multiplies it by 128 and shows the exact ounce equivalent. It is built for the everyday situation where bulk liquids are sold or stored by the gallon but used, dosed, or served by the ounce, so you can move between the two without reaching for a calculator or second-guessing the math.

Reach for this converter whenever a recipe, dosing chart, or hydration goal is written in fluid ounces but your container is measured in gallons. Cooks scaling a 2-gallon soup base into 12 fl oz bowls, bartenders mixing punch by the jug and pouring it by the glass, and anyone diluting cleaners, fertilizers, or paint where the ratio is given as ounces per gallon all need the same bridge. Fitness users tracking a daily gallon of water also use it in reverse to see how their 16 fl oz refills add up. It saves time and removes the common slip of confusing weight ounces with fluid ounces.

Under the hood the conversion is a single fixed factor: one US liquid gallon equals 128 US fluid ounces, because a gallon is defined as 231 cubic inches and a fluid ounce is exactly one one-hundred-twenty-eighth of that. The tool simply takes your input, multiplies by 128, and rounds the result for readability while keeping the underlying value precise. You can enter decimals for partial gallons, and the converter handles them the same way, so 1.5 gallons returns 192 fluid ounces and a quarter gallon returns 32 fluid ounces.

A note on accuracy and units: this tool uses the US customary gallon and US fluid ounce. The UK imperial gallon is larger, holding 160 imperial fluid ounces, and an imperial fluid ounce is also a slightly different size (about 28.4 mL versus 29.57 mL for the US ounce), so results here should not be applied to imperial measurements. The conversion runs entirely in your browser, meaning the numbers you type are never uploaded to a server, sold, or logged, and the tool works the same way offline once the page has loaded.

Frequently asked questions

How many fluid ounces are in a gallon?

There are 128 US fluid ounces in one US gallon. To convert any number of gallons, multiply the gallon figure by 128.

Is this converter for US or imperial gallons?

It uses the US customary gallon and US fluid ounce. A UK imperial gallon is different, equal to 160 imperial fluid ounces, so do not use these results for imperial measurements.

How many fluid ounces are in a half gallon?

A half gallon equals 64 US fluid ounces, since 0.5 multiplied by 128 is 64. A quarter gallon is 32 fluid ounces.

Can I convert fractional or decimal gallons?

Yes. Enter values like 0.75 or 2.5 and the tool multiplies by 128, so 0.75 gallons returns 96 fluid ounces and 2.5 gallons returns 320 fluid ounces.

Is a fluid ounce the same as a weight ounce?

No. A fluid ounce measures volume, while a weight ounce measures mass. This converter deals only with fluid ounces, so it does not depend on what liquid you are measuring.

From our blog

Reading Hex Like a Decimal: A Practical Guide to Hex-to-Decimal Conversion

By the Super Simple Digital Tools Team · Updated June 2026

Hexadecimal exists because computers think in binary, and binary is exhausting for humans to read. A single hex digit represents exactly four binary bits, so two hex digits cover a full byte and a long string of ones and zeros collapses into something compact like 0x1F4. That compactness is why hex shows up in memory dumps, color codes, hash values and hardware registers. The catch is that we count in tens, not sixteens, so a hex value rarely tells you its actual magnitude until you convert it to decimal.

The system uses sixteen symbols. The familiar digits 0 to 9 keep their usual values, and then the letters A, B, C, D, E and F take over for 10, 11, 12, 13, 14 and 15. That is the single fact that trips people up: F is not a letter here, it is the number fifteen. Once you internalize that A through F are just digits worth ten through fifteen, the rest of the conversion is ordinary arithmetic you already know from decimal place value.

To convert, give each digit a weight based on its position. The rightmost digit is multiplied by 16 to the power of 0 (which is 1), the next by 16 to the power of 1 (16), the next by 16 squared (256), and so on. Multiply, then add everything up. Take 2F: that is 2x16 + 15 = 47. Take A0: that is 10x16 + 0 = 160. The pattern never changes, only the number of terms grows as the value gets longer.

Knowing a few landmark values makes hex far less intimidating. 0xFF is 255, the maximum for one byte and the reason color channels top out there. 0xFFFF is 65,535, the largest unsigned 16-bit value. 0xFFFFFFFF is 4,294,967,295, the ceiling of an unsigned 32-bit integer. When you spot these in code or documentation you can recognize them as boundaries rather than puzzles, which is often enough to understand what a piece of software is doing.

This converter automates the place-value math so you can stay focused on the problem in front of you, whether that is decoding a color, checking a register, or confirming a calculation. Paste the value, with or without 0x and in any letter case, and read the exact decimal result. Because the work happens in your browser using whole-number arithmetic, the answer is precise for short and long inputs alike, and nothing you enter leaves your device.

  • Remember the letter values A=10, B=11, C=12, D=13, E=14, F=15; this is all that separates hex from ordinary place-value math.
  • Use 0xFF (255) as a mental anchor: it is the top of a single byte and the maximum for any one channel in a #RRGGBB color code.
  • Split a color like FF5733 into FF, 57 and 33 and convert each pair separately to get the red, green and blue values.
  • Don't worry about the 0x prefix or capitalization when pasting from code; both are handled, so 0x1a and 1A give the same answer.

Read the full guide →

Tool by the Super Simple Digital Tools Team. Reviewed by our editorial team. Free to use, no signup required.

Related tools