IP를 16진수로 변환

IP 주소 입력
샘플
16진수 출력

IP를 16진수로 변환하는 무료 온라인 도구

IP를 16진수로 변환하는 도구는 IP 주소를 16진수로 변환할 수 있는 무료 온라인 도구입니다. 이 도구는 사용하기 쉽게 설계되어 있으며 시스템 또는 소프트웨어 의존성이 필요하지 않습니다. 이 도구를 사용하면 귀찮은 작업 없이 빠르게 IP 주소를 16진수 형식으로 변환할 수 있습니다.

특징

  • 무료이며 온라인으로 사용할 수 있습니다.
  • 시스템 및 소프트웨어 의존성이 없습니다.
  • 지우기, 복사, 샘플 기능이 있습니다.
  • 데이터 보안, 로컬 컴퓨팅

사용 방법

IP를 16진수로 변환하는 방법은 다음 단계를 따르면 됩니다.

  1. 입력란에 IP 주소를 입력하거나 붙여넣습니다.
  2. "변환" 버튼을 클릭하여 IP 주소를 16진수로 변환합니다.
  3. 변환된 16진수가 출력란에 표시됩니다.
  4. 변환된 16진수를 복사하거나 "복사" 버튼을 클릭할 수 있습니다.

예제 코드

Python, C, C++, JavaScript, Java 및 PHP에서 IP 주소를 16진수로 변환하는 데 사용할 수 있는 몇 가지 예제 코드가 있습니다.

Python

def ip_to_hex(ip_address):
    octets = ip_address.split(".")
    hex_ip = ""
    for octet in octets:
        hex_ip += hex(int(octet))[2:].zfill(2)
    return hex_ip

# Example usage:
ip_address = "127.0.0.1"
hex_ip = ip_to_hex(ip_address)
print(hex_ip)

C

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

char *ip_to_hex(char *ip_address)
{
    char *octet;
    char *hex_ip = (char *)malloc(sizeof(char) * 8);
    hex_ip[0] = '0';
    hex_ip[1] = 'x';
    for (int i = 0; i < 4; i++)
    {
        octet = strtok(ip_address, ".");
        ip_address = NULL;
        strcat(hex_ip, strtol(octet, NULL, 10) < 16 ? "0" : "");
        sprintf(hex_ip + strlen(hex_ip), "%X", strtol(octet, NULL, 10));
    }
    return hex_ip;
}

// Example usage:
int main()
{
    char *ip_address = "127.0.0.1";
    char *hex_ip = ip_to_hex(ip_address);
    printf("%s\n", hex_ip);
    free(hex_ip);
    return 0;
}

C++

#include <iostream>
#include <sstream>
#include <iomanip>

std::string ip_to_hex(std::string ip_address) {
    std::stringstream hex_ip;
    hex_ip << "0x";
    int octet1, octet2, octet3, octet4;
    char delimiter;
    std::stringstream ss(ip_address);
    ss >> octet1 >> delimiter >> octet2 >> delimiter >> octet3 >> delimiter >> octet4;

    hex_ip << std::uppercase << std::setfill('0') << std::setw(2) << std::hex << octet1;
    hex_ip << std::uppercase << std::setfill('0') << std::setw(2) << std::hex << octet2;
    hex_ip << std::uppercase << std::setfill('0') << std::setw(2) << std::hex << octet3;
    hex_ip << std::uppercase << std::setfill('0') << std::setw(2) << std::hex << octet4;

    return hex_ip.str();
}

// Example usage:
int main() {
    std::string ip_address = "127.0.0.1";
    std::string hex_ip = ip_to_hex(ip_address);
    std::cout << hex_ip << std::endl;
    return 0;
}

JavaScript

function ipToHex(ipAddress) {
  let octets = ipAddress.split(".");
  let hexIp = "0x";
  for (let i = 0; i < octets.length; i++) {
    hexIp += parseInt(octets[i]).toString(16).padStart(2, "0");
  }
  return hexIp;
}

// Example usage:
let ipAddress = "127.0.0.1";
let hexIp = ipToHex(ipAddress);
console.log(hexIp);

Java

public static String ipToHex(String ipAddress) {
    String[] octets = ipAddress.split("\\.");
    String hexIp = "0x";
    for (String octet : octets) {
        hexIp += Integer.toHexString(Integer.parseInt(octet)).toUpperCase();
    }
    return hexIp;
}

// Example usage:
String ipAddress = "127.0.0.1";
String hexIp = ipToHex(ipAddress);
System.out.println(hexIp);

PHP

function ip_to_hex($ip_address) {
    $octets = explode(".", $ip_address);
    $hex_ip = "0x";
    foreach ($octets as $octet) {
        $hex_ip .= str_pad(dechex($octet), 2, "0", STR_PAD_LEFT);
    }
    return $hex_ip;
}

// Example usage:
$ip_address = "127.0.0.1";
$hex_ip = ip_to_hex($ip_address);
echo $hex_ip;

IP를 16진수로 변환하는 도구를 사용하는 것은 쉽고 간단합니다. 이 무료 온라인 도구를 사용하면 귀찮은 작업 없이 IP 주소를 16진수로 변환할 수 있습니다. 이 도구는 모든 계산을 로컬에서 수행하므로 데이터가 안전하다는 것을 보장합니다. 따라서 IP를 16진수로 변환하는 도구를 지금 바로 사용해 보세요!

자주 묻는 질문 (FAQ)

더 많은 도구 만나보기