C:
char c = '\u1769';
printf("%c\n", c); // Output: ᝩ
JavaScript:
const char = '\u1769';
console.log(char); // Output: ᝩ
Java:
char c = '\u1769';
System.out.println(c); // Output: ᝩ
JSON:
{"text": "\u1769"} // Value: ᝩ
Python:
char = '\u1769'
print(char) # Output: ᝩ
Perl:
my $char = "\x{1769}";
print $char; # Output: ᝩ
PHP:
$char = "\x{1769}";
echo $char; // Output: ᝩ
Ruby:
char = "\u{1769}"
puts char # Output: ᝩ
Rust:
let c = '\u{1769}';
println!("{}", c); // Output: ᝩ
Go:
char := '\u1769'
fmt.Printf("%c\n", char) // Output: ᝩ
CSS:
/* CSS content property */
.element::before {
content: "\001769"; /* 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%A9
MD5:
7559350d8c40d0fcdbe79ab913204023
SHA1:
73fd3a8f288a4f117a8ffa180597c9447151ba22
Base64:
4Z2p