C:
char c = '\u1653';
printf("%c\n", c); // Output: ᙓ
JavaScript:
const char = '\u1653';
console.log(char); // Output: ᙓ
Java:
char c = '\u1653';
System.out.println(c); // Output: ᙓ
JSON:
{"text": "\u1653"} // Value: ᙓ
Python:
char = '\u1653'
print(char) # Output: ᙓ
Perl:
my $char = "\x{1653}";
print $char; # Output: ᙓ
PHP:
$char = "\x{1653}";
echo $char; // Output: ᙓ
Ruby:
char = "\u{1653}"
puts char # Output: ᙓ
Rust:
let c = '\u{1653}';
println!("{}", c); // Output: ᙓ
Go:
char := '\u1653'
fmt.Printf("%c\n", char) // Output: ᙓ
CSS:
/* CSS content property */
.element::before {
content: "\001653"; /* 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%93
MD5:
c95b7d2699856b5932a8e8d1145d3084
SHA1:
4964215735ab3be6f9e9b94a666eebae9fab0c2d
Base64:
4ZmT