---
title: formatPercent - 值转换为百分数表示
nav:
  title: 使用文档
  path: /lib
group:
  path: /string
  title: 字符串操作
  order: 2
---

## formatPercent

> 值转换为百分数表示

Demo:

```tsx | pure
import { formatPercent } from 'xijs';

const num = formatPercent(0.1234, 2);
console.log(num); // -> 12.34%
```
