https://github.com/huskydog9988/offtext
Convert your ASCII into weird Unicode strings
https://github.com/huskydog9988/offtext
ascii cli command-line-tool fun js node-module npm-package offtext unicode
Last synced: about 2 months ago
JSON representation
Convert your ASCII into weird Unicode strings
- Host: GitHub
- URL: https://github.com/huskydog9988/offtext
- Owner: Huskydog9988
- License: mit
- Created: 2020-12-05T03:32:30.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2020-12-28T02:21:40.000Z (over 5 years ago)
- Last Synced: 2025-02-17T06:19:20.919Z (over 1 year ago)
- Topics: ascii, cli, command-line-tool, fun, js, node-module, npm-package, offtext, unicode
- Language: TypeScript
- Homepage: https://www.npmjs.com/package/offtext
- Size: 60.5 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Offtext
[](https://github.com/Huskydog9988/offtext/actions)
[](https://www.npmjs.com/package/offtext)
[](http://commitizen.github.io/cz-cli/)
[](https://forthebadge.com)
[](https://forthebadge.com)
[](https://forthebadge.com)
> Convert your ASCII into weird Unicode strings
Offtext converts your traditional text into incongruous text, straight out of a seizure.
## ๐โโ๏ธ Quick Usage
```bash
npx offtext randomcase
```
## ๐ฅ Install and Run
You can also install Offtext as a global cli
```bash
npm install -g offtext
offtext gen
```
## ๐ Examples
Bash
```bash
offtext randomcase "The Text's CASE is random"
# Output: tHE TEXT'S CaSE Is RandOm
offtext cracked this text is super broken looking..
# Output: โฎ๊ฉ๊ส ๐ฝ๐๏ฝ๊ ๊๐ฐ ึสืง๐ผะณ ษฎ๏ฝ๐จ๐ด๐ผ๊ แช๐ ๐ฌ๐ฌIล๐..
offtext reverse it has been reversed
# Output: desrever neeb sah ti
```
JS
```js
// CommonJS
const offtext = require('offtext')
// ES6
import * as offtext from 'offtext'
const text = 'some random text'
console.log(offtext.randomCase(text))
// Outputs: soME rAndoM tExt
console.log(offtext.cracked(text))
// Outputs: ยง๐๐๐ ษพฮโ๐ก๐ธ๐ข Tฮฃ๐๏ฝ
console.log(offtext.reverse(text))
// Outputs: txet modnar emos
```
## ๐ Notes
- The randomcase command is the default command, meaning it can be used like: `offtext `