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