C:
char c = '\u1646';
printf("%c\n", c); // Output: ᙆ
JavaScript:
const char = '\u1646';
console.log(char); // Output: ᙆ
Java:
char c = '\u1646';
System.out.println(c); // Output: ᙆ
JSON:
{"text": "\u1646"} // Value: ᙆ
Python:
char = '\u1646'
print(char) # Output: ᙆ
Perl:
my $char = "\x{1646}";
print $char; # Output: ᙆ
PHP:
$char = "\x{1646}";
echo $char; // Output: ᙆ
Ruby:
char = "\u{1646}"
puts char # Output: ᙆ
Rust:
let c = '\u{1646}';
println!("{}", c); // Output: ᙆ
Go:
char := '\u1646'
fmt.Printf("%c\n", char) // Output: ᙆ
CSS:
/* CSS content property */
.element::before {
content: "\001646"; /* 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%86
MD5:
0405bbb433b51ee50fee5b2a3f2cfdd1
SHA1:
f345f8f1ddf0d354e664b72a17cc4ceed362e028
Base64:
4ZmG