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