UTM Zone to EPSG Code Converter — Know Your GIS Projection
Select any UTM zone (1–60) and hemisphere to instantly get the EPSG code, full CRS name, and PROJ.4 string. Includes reverse lookup and a complete reference table for all 120 UTM coordinate systems.
Coordinate reference systems (CRS) are the invisible backbone of every GIS project. When you load a dataset into QGIS, ArcGIS, PostGIS, or any GIS platform, the software must know which CRS the data is in. Choose the wrong one and your data could appear hundreds of kilometres from its true location — a critical error in infrastructure planning, environmental monitoring, or land surveying. The EPSG code is the standard identifier that removes all ambiguity.
UTM (Universal Transverse Mercator) is the most widely used projected coordinate system in GIS. It divides the Earth into 60 zones, each 6° wide, providing a flat Cartesian grid where distances can be measured directly in metres. The WGS 84 UTM family alone covers 120 zones — 60 for the northern hemisphere and 60 for the southern — each with a unique EPSG code.
Advertisement
Understanding the UTM to EPSG Code Pattern
For WGS 84 UTM zones, EPSG codes follow a predictable rule that makes conversion straightforward:
Northern hemisphere: EPSG = 32600 + zone number (zones 32601 to 32660)
Southern hemisphere: EPSG = 32700 + zone number (zones 32701 to 32760)
For example, UTM zone 32 North — which covers central Europe including Germany, Italy, and Scandinavia — is EPSG:32632. Zone 32 South, covering the same longitudes in the southern hemisphere, is EPSG:32732. The pattern holds for all 60 zones, making it simple to calculate mentally once you know the rule.
EPSG Codes for Common Regions
Region
UTM Zone
Hemisphere
EPSG Code
CRS Name
New York, USA
18
North
EPSG:32618
WGS 84 / UTM zone 18N
Los Angeles, USA
11
North
EPSG:32611
WGS 84 / UTM zone 11N
London, UK
30
North
EPSG:32630
WGS 84 / UTM zone 30N
Paris, France
31
North
EPSG:32631
WGS 84 / UTM zone 31N
Berlin, Germany
33
North
EPSG:32633
WGS 84 / UTM zone 33N
Sydney, Australia
56
South
EPSG:32756
WGS 84 / UTM zone 56S
São Paulo, Brazil
23
South
EPSG:32723
WGS 84 / UTM zone 23S
Cape Town, S. Africa
34
South
EPSG:32734
WGS 84 / UTM zone 34S
Tokyo, Japan
54
North
EPSG:32654
WGS 84 / UTM zone 54N
Mumbai, India
43
North
EPSG:32643
WGS 84 / UTM zone 43N
Using EPSG Codes in GIS Software
QGIS
In QGIS, set the project CRS via Project → Properties → CRS. Type the EPSG number in the filter box and select the matching UTM zone. To reproject a layer, use Vector → Data Management → Reproject Layer, setting the target CRS to your UTM EPSG code. QGIS also accepts EPSG codes when defining map canvas CRS and when saving files with specific projections.
ArcGIS Pro
In ArcGIS Pro, search for the CRS name (e.g. "WGS 1984 UTM Zone 32N") in the Coordinate System picker, or enter the WKID number — which is identical to the EPSG code for WGS 84 UTM zones. The Project geoprocessing tool accepts WKID/EPSG codes directly as the output coordinate system.
GDAL / ogr2ogr
Use the EPSG code directly in command-line reprojection: ogr2ogr -t_srs EPSG:32632 output.gpkg input.gpkg. GDAL accepts EPSG codes in the format EPSG:NNNNN for all standard coordinate systems.
PostGIS
PostGIS stores geometry with an SRID (Spatial Reference ID) matching the EPSG code. Use ST_Transform(geom, 32632) to reproject geometry to UTM zone 32 North, or specify the SRID when inserting data: ST_GeomFromText('POINT(6.5 51.2)', 32632).
Advertisement
Step-by-Step Guide
Step 1
Tool Opens with Zone 32 North Pre-Selected
The UTM to EPSG converter loads with UTM zone 32 North pre-selected, instantly showing EPSG:32632. The result card displays the full CRS name "WGS 84 / UTM zone 32N", the longitude band covered, datum, and unit information. No setup or account required.
Step 2
Select a UTM Zone from the Dropdown
Click the "UTM Zone (1–60)" dropdown to select any of the 60 UTM zones. The EPSG code updates immediately without a page reload. Each zone covers a 6° longitude band around the globe.
Step 3
Switch to Southern Hemisphere
Click the "↓ South" button to switch to the southern hemisphere. The EPSG code prefix changes from 326XX to 327XX — for example, UTM zone 32 South gives EPSG:32732. The prefix 326 always means northern hemisphere and 327 means southern hemisphere.
Step 4
EPSG Code Displayed Instantly
The result card shows the EPSG code in large, clear text alongside the full official CRS name. The longitude band, datum (WGS 84), and units (metres) are shown below. Three copy buttons let you copy the bare number, the EPSG: prefixed string, or the full CRS name in a single click.
Step 5
Copy Code or Name with One Click
Click "Copy EPSG:" to copy the full code like "EPSG:32632" directly to your clipboard. Click "Copy number" for just "32632" (useful for QGIS CRS search). Click "Copy name" for the full CRS name. The button turns green for 1.5 seconds to confirm the copy.
Step 6
Copy the PROJ.4 / PROJ String
Below the result card, the PROJ.4 string is shown in full — for example "+proj=utm +zone=32 +datum=WGS84 +units=m +no_defs". Click the "Copy" button to copy it for use in command-line GIS tools, GDAL/OGR, or any software that accepts PROJ strings.
Step 7
Reverse Lookup — Enter an EPSG Code
In the "EPSG Code → UTM Zone" section, type any UTM EPSG code (like 32718 or EPSG:32701) and press Enter or click "Lookup". The tool instantly tells you which UTM zone and hemisphere that code corresponds to.
Step 8
Apply Reverse Result to Converter
After a successful reverse lookup, click "Apply to converter ↑" to instantly update the forward converter with the looked-up zone and hemisphere. This syncs both sections and shows the full CRS details for the entered EPSG code.
Step 9
Open the Full 120-Zone Reference Table
Click "▼ Show all 120 UTM zones" to expand a scrollable table listing all 60 UTM zones with their longitude bands and both northern and southern EPSG codes. Click any EPSG code in the table to immediately load it in the converter. The currently selected zone is highlighted.
Step 10
Click Any Zone in the Table
Clicking a row in the reference table sets the zone selector to that zone. Clicking the blue EPSG code sets both zone and hemisphere to North; clicking the purple EPSG code sets both to South. This lets you browse and explore all UTM zones and copy their codes directly from the table.