<?php

$objectManager = \Magento\Framework\App\ObjectManager::getInstance();
$customerFactory = $objectManager->get('\Magento\Customer\Model\CustomerFactory')-
>create();

$customerId = 12; // customer id

$customer = $customerFactory->load($customerId);

print_r($customer->getData());

?>