Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jasonbarry/face64
Like base64, but with emoji
https://github.com/jasonbarry/face64
base64 decoding emoji encoding
Last synced: 11 days ago
JSON representation
Like base64, but with emoji
- Host: GitHub
- URL: https://github.com/jasonbarry/face64
- Owner: jasonbarry
- Created: 2021-11-14T19:15:42.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-08-05T22:23:23.000Z (over 2 years ago)
- Last Synced: 2024-10-07T03:50:47.008Z (3 months ago)
- Topics: base64, decoding, emoji, encoding
- Language: HTML
- Homepage: https://face64.me
- Size: 1.31 MB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# face64
Like base64, but with emoji
- Under 700 bytes, no dependencies
- Works in node.js and the browser
- Pretty silly in general## Installation
```js
yarn add face64
// ...
import face64 from 'face64'
```or
```html
```## Usage
```js
face64.encode('Jello, world!') // "π£π½π¦ππ²πππΌππ»ππΌππΊπππ²ππππͺπππ"
face64.decode('π£π½π¦ππ²πππΌππ»ππΌππΊπππ²ππππͺπππ') // "Jello, world!"face64.auto('Jello, world!') // "π£π½π¦ππ²πππΌππ»ππΌππΊπππ²ππππͺπππ"
face64.auto('π£π½π¦ππ²πππΌππ»ππΌππΊπππ²ππππͺπππ') // "Jello, world!"
```