Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/khang-nd/special-chars

Special characters
https://github.com/khang-nd/special-chars

special-characters

Last synced: about 2 hours ago
JSON representation

Special characters

Awesome Lists containing this project

README

        

# Special Characters

[![npm](https://img.shields.io/npm/v/special-chars)](http://npm.im/special-chars)
[![gzip size](https://img.shields.io/bundlephobia/minzip/special-chars)](https://unpkg.com/special-chars)

> A ready-made package to include special characters in your project, categorized.

## Installation

### Browser global

```html

console.log(spc);
/* {
Arrows: [],
Latin: [],
Math: [],
Misc: [],
} */

```

### Node

```
npm install special-chars
```

```js
// CJS
var spc = require("special-chars");

// or ESM
import spc from "special-chars";
```

## Credits

The data of special characters is derived directly from this [react-character-map](https://github.com/Dayjo/react-character-map) repo. Special thanks to its author and contributors.