C:
char c = '\u1749';
printf("%c\n", c); // Output: ᝉ
JavaScript:
const char = '\u1749';
console.log(char); // Output: ᝉ
Java:
char c = '\u1749';
System.out.println(c); // Output: ᝉ
JSON:
{"text": "\u1749"} // Value: ᝉ
Python:
char = '\u1749'
print(char) # Output: ᝉ
Perl:
my $char = "\x{1749}";
print $char; # Output: ᝉ
PHP:
$char = "\x{1749}";
echo $char; // Output: ᝉ
Ruby:
char = "\u{1749}"
puts char # Output: ᝉ
Rust:
let c = '\u{1749}';
println!("{}", c); // Output: ᝉ
Go:
char := '\u1749'
fmt.Printf("%c\n", char) // Output: ᝉ
CSS:
/* CSS content property */
.element::before {
content: "\001749"; /* Display: ᝉ */
}
HTML Decimal:
<p>HTML decimal: ᝉ</p> <!-- Display: ᝉ -->
HTML Hexadecimal:
<p>HTML hex: ᝉ</p> <!-- Display: ᝉ -->
URL Encoding:
// ᝉ URL encoding
https://unicodefinder.com/search.php?query=%E1%9D%89
MD5:
a80f2418570d9031b193695b16ba8a25
SHA1:
fad745a32388f1a172c470109889abf9a0d68cc8
Base64:
4Z2J