输入中的上标

Superscript in an input

文本输入标签是否可以接受上标,并实际显示它?

例如,Google 带有指数的计算器上标,这就是我要找的。

转到此 &what(或仅从此 post 复制并粘贴)并直接单击字形(有时您需要单击 link)。直接复制粘贴是最简单的方法。

:root {
  font: 400 16px/1 Consolas
}

input {
  font-size: 2rem;
}
<!DOCTYPE html>
<html>

<head>
  <meta charset='utf-8'>
</head>

<body>
  <input value="X ⁰ ¹ ² ³ ⁴ ⁵ ⁶ ⁷ ⁸ ⁹ ⁺ ⁻ ⁼ ⁽ ⁾ ⁿ °">
</body>

</html>