C:
char c = '\u1747';
printf("%c\n", c); // Output: ᝇ
JavaScript:
const char = '\u1747';
console.log(char); // Output: ᝇ
Java:
char c = '\u1747';
System.out.println(c); // Output: ᝇ
JSON:
{"text": "\u1747"} // Value: ᝇ
Python:
char = '\u1747'
print(char) # Output: ᝇ
Perl:
my $char = "\x{1747}";
print $char; # Output: ᝇ
PHP:
$char = "\x{1747}";
echo $char; // Output: ᝇ
Ruby:
char = "\u{1747}"
puts char # Output: ᝇ
Rust:
let c = '\u{1747}';
println!("{}", c); // Output: ᝇ
Go:
char := '\u1747'
fmt.Printf("%c\n", char) // Output: ᝇ
CSS:
/* CSS content property */
.element::before {
content: "\001747"; /* 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%87
MD5:
b9c1329565a120be49f1dbe372d0ac5e
SHA1:
cdecf9ed562b44faa991c9260cdc752c7d40aca6
Base64:
4Z2H