An IP address by definition is a 32-bit value, and a 32-bit integer can represent. If you want to convert this integer representation into something else, like the more familiar 'dotted octet' xxx.xxx.xxx.xxx, that will depend on what language you are using. For example Java:
int ip = ... ;
String ipStr =
String.format("%d.%d.%d.%d",
(ip & 0xff),
(ip >> 8 & 0xff),
(ip >> 16 & 0xff),
(ip >> 24 & 0xff));
From this thread: Java: convert int to InetAddress - Stack Overflow
This is an online decimal to dotted notation converter:
IP Converter: IP Conversion | IP Converters Hex, Binary, Decimal