style
path
text
path
curl https://tcpdata.com/text-transform/upside-down/Hello%20World
curl https://tcpdata.com/text-transform/fancy/Amazing
curl https://tcpdata.com/text-transform/circle/COOL
curl https://tcpdata.com/text-transform/bold/Important
curl https://tcpdata.com/text-transform/strikethrough/Cancelled
// Get fancy text
fetch('https://tcpdata.com/text-transform/fancy/Beautiful')
.then(r => r.json())
.then(d => console.log(d.transformed));
import requests
# Get upside-down text
response = requests.get('https://tcpdata.com/text-transform/upside-down/Hello')
print(response.json()['transformed']) # Output: oืืวH
Available styles: upside-down, fancy, bold, italic, bold-italic
Circles: circle, bubble, negative-circle
Squares: square, negative-square
Fonts: monospace, double-struck
Effects: tiny, wide, strikethrough, underline
upside-down: Flips text upside down and reverses it (ษฅวืืo)
fancy: Fancy cursive/script text (๐ฑ๐ฎ๐ต๐ต๐ธ)
bold: Bold Unicode text (๐ก๐๐ฅ๐ฅ๐จ)
italic: Italic Unicode text (๐ฉ๐ฆ๐ญ๐ญ๐ฐ)
circle: Circled letters (โโโโโ)
square: Squared letters (๐ท๐ด๐ป๐ป๐พ)
tiny: Tiny/superscript text (สฐแตหกหกแต)
wide: Full-width text (๏ฝ๏ฝ ๏ฝ๏ฝ๏ฝ) - Copy/paste to see the difference if not visible in browser
strikethrough: Strike through text (hฬถeฬถlฬถlฬถoฬถ)
underline: Underlined text (hฬฒeฬฒlฬฒlฬฒoฬฒ)