Awesome
Base65536
PHP implementation of the base65536 algorithm.
Installation
composer require hevertonfreitas/base65536
Usage
require 'vendor/autoload.php';
use \Hevertonfreitas\Base65536\Base65536;
$encodedString = Base65536::encode('hello world'); // Output: 驨ꍬ啯𒁷ꍲᕤ
$decodedString = Base65536::decode($encodedString); // Output: hello world
Credits
Javascript original implementation: base65536.
License
The MIT License (MIT)