C:
char c = '\u1643';
printf("%c\n", c); // Output: ᙃ
JavaScript:
const char = '\u1643';
console.log(char); // Output: ᙃ
Java:
char c = '\u1643';
System.out.println(c); // Output: ᙃ
JSON:
{"text": "\u1643"} // Value: ᙃ
Python:
char = '\u1643'
print(char) # Output: ᙃ
Perl:
my $char = "\x{1643}";
print $char; # Output: ᙃ
PHP:
$char = "\x{1643}";
echo $char; // Output: ᙃ
Ruby:
char = "\u{1643}"
puts char # Output: ᙃ
Rust:
let c = '\u{1643}';
println!("{}", c); // Output: ᙃ
Go:
char := '\u1643'
fmt.Printf("%c\n", char) // Output: ᙃ
CSS:
/* CSS content property */
.element::before {
content: "\001643"; /* 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%83
MD5:
57ad69b70210cdc13c483ef92d8f0a35
SHA1:
2d3cc5ca7eb634387ffcee71ba583ae2b2874068
Base64:
4ZmD