π§WIA Pin Code Finder
Convert any GPS location to a universal 9-digit WIA Pin Code address. Using YUJIN Transform technology with 11cm precision worldwide.
π€ What is WIA Pin Code?
Think of phone numbers for places - that's WIA Pin Code! Every location on Earth gets a simple 9-digit address.
11cm Precision
More accurate than postal codes
Universal
Works everywhere on Earth
9 Digits
Simple as a phone number
Free Forever
No fees for personal use
Convert GPS to WIA Pin Code
Search by City
Enter Coordinates
Use My Location
π Famous Locations & Their WIA Pin Codes
π°π· Seoul, South Korea
37.5665Β°N, 126.9780Β°E
708-698-852
πΊπΈ New York, USA
40.7128Β°N, 74.0060Β°W
723-950-258
π¬π§ London, UK
51.5074Β°N, 0.1278Β°W
785-842-499
π―π΅ Tokyo, Japan
35.6762Β°N, 139.6503Β°E
698-316-888
π― Your WIA Pin Code
Universal address for this location
708-698-852
Your Universal Address
Precision: Β±11cm
Location
Seoul, South Korea
Latitude
37.5665Β°N
Longitude
126.9780Β°E
System
YUJIN Transform
β‘ Powered by YUJIN Transform
The mathematical foundation that makes WIA Pin Code possible. Developed by Dr. Yeon Sam-Heum on August 15, 2025.
// YUJIN Transform Algorithm
function yujinTransform(latitude, longitude) {
// Convert GPS to normalized coordinates
const latPart = Math.floor(((latitude + 90) / 180) * 999999);
const lngPart = Math.floor(((longitude + 180) / 360) * 999);
// Format as XXX-XXX-XXX
const latStr = latPart.toString().padStart(6, '0');
const lngStr = lngPart.toString().padStart(3, '0');
return `${latStr.substring(0,3)}-${latStr.substring(3,6)}-${lngStr}`;
}
π Learn more about YUJIN Transform β