我怎样才能创建这个数字?

How can I create this figure?

enter image description here

我的布局遇到了问题。谁能帮我用 html / css 做这个形状?

我建议使用以下 HTML:

div {
  width: 20em;
  height: 20em;
  border-radius: 50%;
  background-color: #F0AC23;
  border: 4px solid #fff;
  box-shadow: 0 0 0 5px #F0AC23;
}
<div></div>