Flex Coder
New Video Uploaded 👇 https://youtu.be/shZWn2T9PR0 ⚠️ Note: Like, Share And Subscribe
Create bot and enter prompt and get ai generated image. Server host bot 🫡
🔥2⚡1❤1👍1
Flex Coder
New Video Uploaded 👇 https://youtu.be/RrJIqTH-f2Q ⚠️ Note: Like, Share And Subscribe
This api takes a shortened link and gives you the original full URL it redirects to. This helps you see where a hidden or unknown link will take you. Use it against scam, or untrusted links, etc
👍2❤1👌1
Flex Coder
Want This Api Video 😂?
🔁 Text To Emoji Converter & Emoji To Text
<?php
header('Content-Type: application/json');
$chars = str_split('abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789 `~!@#$%^&*()-_=+[{]}\\|;:\'",<.>/?');
$emojis = ['🍕','🐱','🚀','🌈','🎲','🧃','🦄','🍭','🎯','🧩','🥑','🛸','🎮','🎨','🧸','🐶','🚦','🍉','🥥','🧁','🥳','🍔','🍩','🍿','🎤','📦','🛒','💎','📸','🎧','🧠','🚁','🎈','📚','🧃','🧊','🎃','👽','🤖','🦕','🌋','🪐','⚡️','🍓','🦐','🐬','🦋','🐼','🧠','🦩','🌟','🔮','🛹','🚴','🎻','🧗','🪂','⛷','🛷','🥌','🏂','🏄','🏇','🧗♀️','🧘','🏌️','🏊','⛳️','🚣','🧍','🕺','💃','🛀','🛫','🛬','🚉','⛴','🚤','🚂','🛻','🚗','🚌','🏎','🚓','🚑','🚒','🚚','🛵','🚜','🦼','🦽','🛺','🚍','🗿','🦧','🪳','🪰','🐝','🦗','🐛','🦂'];
$map = array_combine($chars, array_slice($emojis, 0, count($chars)));
$reverse_map = array_flip($map);
$text = $_GET['text'] ?? '';
$result = '';
$isEmoji = preg_match('/[\x{1F000}-\x{1FFFF}]/u', $text);
if ($isEmoji) {
$input = preg_split('//u', $text, -1, PREG_SPLIT_NO_EMPTY);
foreach ($input as $char) {
$result .= $reverse_map[$char] ?? '';
}
} else {
$input = str_split($text);
foreach ($input as $char) {
$result .= $map[$char] ?? $char;
}
}
echo json_encode(['input' => $text, 'output' => $result]);
👍2😍2❤1