Home     Blog

Metric Conversion Chart

conversion chart Metric Conversion Chart

Standard to Metric Conversion Chart

 

Symbol

 

WhenYou Know

 

Multiply by

 

To Find

 

Symbol

 

LENGTH

 

in

inches

2.5

centimeters

cm

ft

feet

30

centimeters

cm

yd

yards

0.9

meters

m

mi

miles

1.6

kilometers

km

AREA

 

in²

square inches

6.5

square centimeters

cm²

 

ft²

square feet

0.09

square meters

m²

 

yd²

square yards

0.8

square meters

m²

 

mi²

square miles

2.6

square kilometers

km²

 

acres

0.4

hectares

ha

MASS (weight)

 

oz

ounces

28

grams

g

lb

pounds

0.45

kilograms

kg

short tons

0.9

metric ton

t

(2000 lb)

VOLUME

 

tsp

teaspoons

5

milliliters

mL

Tbsp

tablespoons

15

milliliters

mL

in³

cubic inches

16

milliliters

mL

fl oz

fluid ounces

30

milliliters

mL

c

cups

0.24

liters

L

pt

pints

0.47

liters

L

qt

quarts

0.95

liters

L

gal

gallons

3.8

liters

L

ft³

cubic feet

0.03

cubic meters

m³

 

yd³

cubic yards

0.76

cubic meters

m³

 

TEMPERATURE (exact)

°F

degrees Fahrenheit

subtract 32, multiply by 5/9

degrees Celsius

°C

 

Metric to Standard Conversion Chart

 

Symbol

 

WhenYou Know

 

Multiply by

 

To Find

 

Symbol

 

LENGTH

 

mm

millimeters

0.04

inches

in

cm

centimeters

0.4

inches

in

m

meters

3.3

feet

ft

m

meters

1.1

yards

yd

km

kilometers

0.6

miles

mi

AREA

cm²

square centimeters

0.16

square inches

in²

 

m²

square meters

1.2

square yards

yd²

 

km²

square kilometers

0.4

square miles

mi²

 

ha

hectares

2.5

acres

(10,000 m²)

MASS (weight)

g

grams

0.035

ounces

oz

kg

kilograms

2.2

pounds

lb

metric ton

1.1

short tons

(1,000 kg)

VOLUME

mL

milliliters

0.03

fluid ounces

fl oz

mL

milliliters

0.06

cubic inches

in³

 

L

liters

2.1

pints

pt

L

liters

1.06

quarts

qt

L

liters

0.26

gallons

gal

m³

cubic meters

35

cubic feet

ft³

 

m³

cubic meters

1.3

cubic yards

yd³

 

TEMPERATURE (exact)

°C

degrees Celsius

multiply by 9/5, add 32

degrees Fahrenheit

°F

 

VN:F [1.9.17_1161]
Rating: 0.0/10 (0 votes cast)
Follow Will.Spencer on

Leave a Reply

Related Posts

  • Convert Centimeters to Inches

      Convert Centimeters to Inches Automatically To convert Centimeters to Inches, enter the number of centimeters to be converted into the centimeters box below. Centimeters: Centimeters (cm) Results: Inches (in) 0 Feet (ft) 0 Yards (yd) 0 Rods (rd) 0 Miles (mi) 0 Micrometers (µm) 0 Millimeters (mm) 0 Meters (m) 0 Kilometers (km) 0 [...]...


  • Temperature Conversion Chart

    Temperature Conversion Chart Celsius Fahrenheit -40° -40° -39° -38.2° -38° -36.4° -37° -34.6° -36° -32.8° -35° -31° -34° -29.2° -33° -27.4° -32° -25.6° -31° -23.8° -30° -22° -29° -20.2° -28° -18.4° -27° -16.6° -26° -14.8° -25° -13° -24° -11.2° -23° -9.4° -22° -7.6° -21° -5.8° -20° -4° -19° -2.2° -18° -0.4° -17° 1.4° -16° 3.2° [...]...


  • Type Conversion – Class to Basic Type

    The constructor handles the task of converting basic types to class types very well. But you cannot use constructors for converting class types to basic data types. Instead, you can define an overloaded casting operator that can be used to convert a class data type into a basic data type. The general form of an [...]...


  • Type Conversion – Basic to Class Type

    The conversion from basic to user defined data types can be done using constructors. Consider the following constructor: .cf { font-family: Lucida Console; font-size: 9pt; color: black; background: white; } .cl { margin: 0px; } .cb1 { color: green; } .cb2 { color: blue; } .cb3 { color: maroon; }   String :: String(char *a) [...]...


  • Type Conversion – Class to Class

    Now that we have understood how to convert basic data types to class types and vice-versa, it is time to learn how to convert objects of one class type to another class type. The conversion between objects of different classes can be done using either a one-argument constructor or a conversion function. The choice depends [...]...