C:
char c = '\u1669';
printf("%c\n", c); // Output: ᙩ
JavaScript:
const char = '\u1669';
console.log(char); // Output: ᙩ
Java:
char c = '\u1669';
System.out.println(c); // Output: ᙩ
JSON:
{"text": "\u1669"} // Value: ᙩ
Python:
char = '\u1669'
print(char) # Output: ᙩ
Perl:
my $char = "\x{1669}";
print $char; # Output: ᙩ
PHP:
$char = "\x{1669}";
echo $char; // Output: ᙩ
Ruby:
char = "\u{1669}"
puts char # Output: ᙩ
Rust:
let c = '\u{1669}';
println!("{}", c); // Output: ᙩ
Go:
char := '\u1669'
fmt.Printf("%c\n", char) // Output: ᙩ
CSS:
/* CSS content property */
.element::before {
content: "\001669"; /* 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%99%A9
MD5:
6486c73b915c4e105c83af72857fdb39
SHA1:
13b1adabb09cc13b30111ed9ae3cbf7e65fe92e2
Base64:
4Zmp