JSFiddle - React, Tailwind, and code Playground
HTML
<div>
<p><span class="c">C</span>Player name<b>25</b></p>
</div>
CSS
div{
max-width: 25rem;
width: 100%;
border-radius: 5px;
border: 2px solid #ccc;
text-align: right;
padding: 0 1rem;
}
.c{
width: 18px;
height: 16px;
border-radius: 3px;
background: #222;
color: #f1f1f1;
align-items: center;
justify-content: center;
text-align: center;
font-size: .75rem;
display: inline-flex;
margin-right: 10px;
}
b{
margin-left: 10px;
display: inline-block;
}