Use FontAwesome!
Link the stylesheet in the head of your HTML document using this link.
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
After that, you can visit this link for a reference of all icons.
To accomplish what you want you can use the code below.
.circle {
height: 50px;
width: 50px;
background-color: #eff2f7;
border-radius: 50%;
display: inline-block;
text-align: center;
}
.icon {
display: inline-block;
position:relative;
top: calc(50% - 8px);
}
.icon:hover {
color: blue;
}
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title></title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div class="circle">
<i class="fa fa-twitter icon"></i>
</div>
</body>
</html>