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